<p>
元素定义字体颜色为红色,我们可以使用以下代码:
p { color: red; }
<p class="highlight">This text will be highlighted in some way.</p>
.highlight { background-color: yellow; }
<p id="main-heading">This is the main heading of the page.</p>
#main-heading { font-size: 24px; }
<input type="text" value="Input text here"> <input type="submit" value="Submit">
input[type="text"] { width: 200px; } input[type="submit"] { background-color: blue; color: white; }
<input>
元素中type
属性为text
的元素的宽度设置为200px,将type
属性为submit
的元素的背景色设置为蓝色,字体颜色设置为白色。
:hover
:鼠标滑过元素时的状态
<li>
:active
:鼠标点击元素时的状态
<li>
:visited
:链接已被访问的状态
<li>
:focus
:元素获得鼠标焦点时的状态
<li>
:nth-child()
:选择一个元素的兄弟元素
<li>
:last-child
:选择一个兄弟元素中的最后一个元素
button:hover { background-color: red; } input:focus { outline: none; } ul li:nth-child(2) { color: blue; } div:last-child { font-size: 16px; }
<button>
元素时的状态设定了背景色。<input>
元素获得鼠标焦点时,将去掉边框。我们使用了每个<ul>
列表的第二个<li>
元素的文本颜色为蓝色。对于最后一个<div>
元素,我们将它的字体大小设置为16px。
<p>总结
<p>CSS选择器有很多种类型,我们可以根据不同的需求和场景使用选择器。如果我们掌握了这些选择器的使用方法,就可以大大提高我们的CSS编程效率,同时也能让我们的代码更加简洁,易读和易于维护。以上是css选择符有哪些的详细内容。更多信息请关注PHP中文网其他相关文章!