Height ,Width and Borders in CSS-HTML
<! DOCTYPE html > < html lang = "en" > < head > < meta charset = "UTF-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > < title > Height,Width and Borders </ title > < style > #firstpara { background-color : rgb ( 124 , 207 , 124 ); height : 30px ; width : 150px ; /* border:4px solid blue; */ /* border-color: red; border-width: 4px; border-style: solid; */ border-radius : 13px ; } #secondpara { background-color : rgb ( 143 , 173 , 143 ); height : 30px ; width : 200px ; border-bottom : 4px solid blue ; border-top : 4px solid rgb ( 104 , 104 , 143 ); border-left : 4px solid rgb ( 255 , 0 , 119 ); border-right : 4px solid rgb ( 105 , 7 , 53 ); /* bor...