Sunday, June 4, 2017

What are css border & padding?


1..CSS Border:-


The CSS border property defines a border around an HTML element:

Example

p {
    border: 1px solid powderblue;
}



2..CSS Padding:-

The CSS padding property defines a padding (space) between the text and the border:

Example

p {
    border: 1px solid powderblue;
    padding: 30px;
}