Internet Explorer删除了Blockquote样式

时间:2015-03-17 12:41:17

标签: css internet-explorer

我在IE中遇到了关于blockquotes的真正问题,IE禁用会忽略任何样式而只留下纯文本。希望有人知道解决方案:D

代码是:

.testimonial 
{
margin: 0;
background: #0054a4;
padding: 15px 50px;
position: relative;
font-family: Georgia, serif;
color: #fff001;
font-style: italic;
font-size:20px;
line-height:20px;
}

.testimonial:before, .testimonial:after 
{
content: "\201C";
position: absolute;
font-size: 80px;
line-height: 1;
color: #fff001;
font-style: normal;
}

.testimonial:before 
{
top: 0;
left: 10px;
}

.testimonial:after 
{
content: "\201D";
right: 10px;
bottom: -0.5em;
}

0 个答案:

没有答案