Đôi khi bạn đang cố gắng tìm hiểu 1 vấn đề j đó thì lại phát hiện ra vấn đề khác... đó là nguyên nhân ra đời của bài này

Trong khi tìm flex trong CSS3

tag:nth-child(n) {
  property: value; 
}

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <style>
        li:nth-child(3) {
  color: #ff0275;
}
        </style>
</head>
<body>
<div>
<ul>
<li>Facebook.</li>
<li>Google.</li>
<li>Installgram.</li>
<li>Twiter.</li>
</ul>
</div>
</body>
</html>

 


Tham khảo:

https://hoclaptrinh.vn/tutorial/css-selectors/selector-nth-child-n

https://codevivu.com/front-end/cong-dung-huu-ich-tu-nth-childn-trong-css/

No comments

Leave your comment

In reply to Some User

Các bài liên quan