覆盖CSS文本转换

前端之家收集整理的这篇文章主要介绍了覆盖CSS文本转换前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我使用以下CSS将所有文本转换为大写字母:
.taxtabs {
font-family: "Lucida Sans Unicode","Lucida Grande",Sans-Serif;
font-size: .8em;
width: inherit;
text-align:center;
text-transform: uppercase;
border-collapse: collapse;
}

现在我想做的是覆盖此CSS并允许某些文本为小写.我该怎么办?也许使用某种内联CSS?谢谢.

解决方法

可能更好地创建一个没有任何文本转换的类.
.normal {
    text-transform: none;
}

<div class="taxtabs">
... <span class="normal">this text is not uppercase</span> ...
</div>
原文链接:/css/216875.html

猜你在找的CSS相关文章