0

How can i style the first letter of the first paragraph in this code, without using ":nth-of-type" pseudo selectors?

<div id="content-wrapper">
<div id="breadcrumbs">
<ul>
<li><a href="">Link</a></li>
</ul>
</div>
<article>
<section>
<h2>Page Name</h2>
<h3>Title</h3>
<p>Here, i'd like to style the first letter here</p>
</section>
</article>
</div>
4

1 回答 1

0

如果您尝试支持旧版本的 IE,恐怕您将不得不将第一个字母包装在<span>标签中并以这种方式设置样式。

<p><span class="letter">H</span>ere, i'd like to style the first letter here</p>

或者,如果您的内容是动态的,您可以使用 jQuery 将第一个字母包装在 a<span>中,然后应用样式。

text = $('p').html();
first = $('<span>'+text.charAt(0)+'</span>').addClass('letter');
$('p').html(text.substring(1)).prepend(first);

希望这可以帮助。

于 2012-07-10T01:09:56.743 回答