Hide Extra Text on Mobile
CSS
Medium
3 views
Problem Description
Hide a long help paragraph on small screens.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use a media query and display: none.
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>
.help { color: #555; }
@media (max-width: 520px) { .help { display: none; } }
</style>
</head>
<body>
<h2>Practice</h2>
<p class='help'>On meetcode you can practice small questions, track your progress, and repeat daily.</p>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!