【发布时间】:2015-10-15 17:10:27
【问题描述】:
以下代码适用于除 Internet Explorer 之外的所有浏览器。
在 IE 中,措辞似乎被压缩为 1px height 或被 hr 渐变覆盖。
是什么导致了这个问题?
.hr-how {
text-align: center;
border: 0;
height: 1px;
margin-bottom: 40px;
margin-top: 40px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}
.hr-how:after {
content: "HOW TO USE IT";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 0.9em;
padding: 0 0.6em;
background: white;
}
<hr class="hr-how" id="hr-how">
【问题讨论】:
标签: html css internet-explorer