在这段代码中:
...
<div class="job-overview no-company-desc">
<h2 class="job-overview-title">Overview</h2>
<p>Jamit’s client is looking for a Senior Software Engineer constantly iterating and pushing releases into production.</p>
<p><strong>Qualifications:</strong></p>
<ul>
<li>Experience leading a team of developers by example – following excellent coding habits and best practices</li>
<li>Experience in an Agile software development environment in a web context</li>
<li>A thorough understanding of how business needs drive product features</li>
<li>Demonstrated expertise with the entire software development life cycle</li>
</ul>
</div>
包括各种css样式表,我尝试通过将我的css代码放在标题中的最后来覆盖它们,即
<style type="text/css">
p { color: blue; }
li { color: blue; }
</style>
这使得LI
项目列表是蓝色的,而不是P
内容。关于使P
内容也变成蓝色的任何建议?