Web dev basics - css (part-3)
Box Model
First we need to understand that in CSS all elements are boxes with content, padding, border and margin.
Here is the initial HTML and CSS we have to demonstrate with examples.
<style>
.box{
width: 200px;
text-align: cent...
basicsofhtml.hashnode.dev5 min read