Highlight Part of Text
CSS
Easy
2 views
Problem Description
Highlight one word using background color and padding.
Output Format
Print the HTML+CSS code in one block.
Constraints
Style a span inside a sentence.
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>
.mark { background: #fff2b2; padding: 2px 6px; border-radius: 8px; }
</style>
</head>
<body>
<p>Practice is <span class='mark'>important</span> on meetcode.</p>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!