Fogwright
0
Q:

css rounded corners

/* Set rounded corners with border-radius property */

.class {
  border-radius: 4px;
}

.circle {
  border-radius: 50%;
}
28
.div { /*Top Left (TL) Top Right (TR) Bottom Right (BR) Bottom Left (BL)*/
	border-radius: 15px 50px 30px 5px; /*TL TR BR BL*/
  	border-radius: 15px 50px 30px; /*TL TRBL BR*/
  	border-radius: 15px 50px; /*TLBR TRBL*/
  	border-radius: 15px; /*All corners*/
}
7
#rcorners {
  border-radius: 25px;
}
9
/* Use border-radius property */

.class {
  border-radius: 5px;
}

.circle {
  border-radius: 50%;
}
4

    .abcclass {
  border-radius: 0px;  // for no radius
  
} 
0

New to Communities?

Join the community