Programming Examples
Css code to design a box using div with following specifications
Write CSS code to design a box using div with following specifications:
Width: 300px Height:300px Background color: Green Border: 3px solid style and Red color
Solution
<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
.box{
width:300px;
height:300px;
background:green;
border:3px solid red;
}
</style>
</head>
<body>
<div class="box">
</div>
</body>
</html>
Output/ Explanation: