How do i have this code have rounded corners? Is that possible?
Also will only the first <div>
be this color or will it be all <div>
codes?
div {
background-color:#b0c4de;
}
How do i have this code have rounded corners? Is that possible?
Also will only the first <div>
be this color or will it be all <div>
codes?
div {
background-color:#b0c4de;
}
Add this to div:
border-radius: 5px;
It will apply to all divs. Use ids or classes to refer to specific divs.