创建一个只有一个元素的细长六边形按钮
问题:
可以您仅使用 HTML 和 CSS 创建一个六边形按钮,而无需求助于多个元素?
可能的解决方案:
以下是仅使用单个元素实现此效果的替代方法:
示例代码:
/* General Button Style */ .button { position: relative; display: block; background: transparent; width: 300px; height: 80px; line-height: 80px; text-align: center; font-size: 20px; text-decoration: none; text-transform: uppercase; color: #e04e5e; margin: 40px auto; font-family: Helvetica, Arial, sans-serif; box-sizing: border-box; } .button:before, .button:after { position: absolute; content: ''; width: 300px; left: 0px; height: 34px; z-index: -1; } .button:before { transform: perspective(15px) rotateX(3deg); } .button:after { top: 40px; transform: perspective(15px) rotateX(-3deg); } /* Button Border Style */ .button.border { border: 4px solid #e04e5e; } .button.border:hover:before, .button.border:hover:after { background: #e04e5e; } .button.border:hover { color: #fff; }
<a href="#" class="button border">Click me!</a>
注意:要使用浏览器前缀,请包含modernizr或前缀。
以上是如何仅使用一个 HTML 元素和 CSS 创建一个细长的六边形按钮?的详细内容。更多信息请关注PHP中文网其他相关文章!