- Get link
- X
- Other Apps
Height and width property in css - Height - It is used to set height of element and you say it set the height dimension of the element syntax - height : 23px height Width - It is used to set width of element and you say it set the width dimension of the element syntax - width : 300px width CODE - <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>padding and margin</title> <style> .container1 { border: 2px solid red; height: 30px; width: 300px; } .container2 { border: 2px solid red; height: 205px; width: 400px; } </style> </head> <body> <p class="container...