我有一个div元素,可以将任何文本设置为大写。
我需要在第一个div中添加另一个div,但其中的任何文本都应该正确大写。我能做到的唯一方法是添加以下两个:
text-transform:lowercase;
text-transform:capitalize
它有效,但有没有更好的方法将这两者结合起来?
答案 0 :(得分:1)
如果text-transform:none
覆盖父设置呢。
答案 1 :(得分:0)
约束两种不同类型的文字:
<div>
<p class="caps">This is the text to capatalize</p>
<p>Normal Text</p>
</div>
.caps { text-transform:uppercase; }