Box Model Border Padding
CSS
Easy
3 views
Problem Description
Create a box and clearly show padding and border.
Output Format
Print the HTML+CSS code in one block.
Constraints
Use padding and border together.
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>
.box { border: 3px solid #0b5; padding: 16px; width: 280px; }
</style>
</head>
<body>
<div class='box'>meetcode box model demo</div>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!