CSS Box Model

The Css Box model defines about layout and design which consist margin, border, padding and actual content. you would be able to see a box in which a part of 512x128. This is the actual data. The padding exist between border and actual data. The margin exist out of the border. <style> .container{ background : red ; margin : 14px ; padding : 13px ; border : 4px solid black ; } </style>