-3

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;
}
j08691
  • 204,283
  • 31
  • 260
  • 272
  • Maybe related: [How does this CSS produce a circle](http://stackoverflow.com/questions/16189208/how-does-this-css-produce-a-circle) – Zeta Feb 07 '14 at 19:39
  • use google.. sorry but that's probably the appropriate answer.. – Dropout Feb 07 '14 at 19:39

1 Answers1

0

Add this to div:

border-radius: 5px;

It will apply to all divs. Use ids or classes to refer to specific divs.

apohl
  • 1,913
  • 27
  • 30