First Child Highlight
CSS
Medium
3 views
Problem Description
Highlight only the first list item in a meetcode topic list.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use :first-child.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode</title>
<style>
li:first-child { font-weight: 700; }
</style>
</head>
<body>
<ul>
<li>HTML Basics</li>
<li>Forms</li>
<li>CSS</li>
</ul>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!