Focus Style for Keyboard
CSS
Medium
2 views
Problem Description
Style the focus state for buttons so it is visible.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use :focus-visible and keep contrast.
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>
button { padding: 10px 14px; border: 1px solid #bbb; border-radius: 10px; background: #fff; }
button:focus-visible { outline: 3px solid #ffb200; outline-offset: 2px; }
</style>
</head>
<body>
<button type='button'>Start practice</button>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!