Answers for "rounded top border css"

CSS
12

how to make borders rounded in css

#rcorners {
  border-radius: 25px;
}
Posted by: Guest on April-27-2020
5

border radius css

border-radius: 5px; /* The corners will be round */
Posted by: Guest on October-08-2020
1

css border radius top

.div {
	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*/
}
Posted by: Guest on July-18-2021

Browse Popular Code Answers by Language