CSS - Padding:\
What is padding?
Padding is used to create space around an element's content, inside of any defined borders.
Type1:
<style> .main{
width: 300px; height: 300px;
background: #7957;
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
pad...
vaithegiv.hashnode.dev1 min read