我有以下div:
<div class="mydiv">
This is some introduction text
<br />
click me
</div>
是否可以使用CSS设置click me
的格式与div的其余部分不同?
答案 0 :(得分:5)
您可以采用不同的方式设置:first-line
的样式。如果只有2行,那么第二行和最后一行的样式有点可以比纯CSS中的第一行样式。
但是
+1给Pevara建议:它应该是一个链接或一个按钮然后它可以轻松地设置样式
div {
text-transform: uppercase;
font-size: 2rem;
color: red;
}
div::first-line {
text-transform: initial;
font-size: 1rem;
color: initial;
}
<p>OK</p>
<div class="mydiv">
This is some introduction text
<br />
click me
</div>
<hr>
<p>#fail</p>
<div class="mydiv" style="width: 100px; border: 1px dotted blue">
This is some introduction text
<br />
click me
</div>
答案 1 :(得分:2)
不,如果不修改HTML或使用JavaScript,就没有纯CSS方式来选择文本click me
。