OneCompiler

3.8 height and width

97
 <!DOCTYPE html>
<html>
    <head>
        <title> 3.8 CSS: Height and Width </title>
		<link rel="stylesheet" href="styles.css" />
    </head>
    <body>
        <div>
            <p> This div element has a height of 200px and a width of 50%.</p>
        </div>
    </body>
	
<!-- Do not remove following lines. They're used to test. -->
    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
    <script src="https://sites.webjam.org/grader/assignment3.8.js"></script>
</html>
 div {
    border-style: solid;
    background-color: powderblue;
}