Answers for "border top right radius"

CSS
2

css rounded corners at top only

border-radius: 10px     10px      0           0;
            // top-left top-right bottom-right bottom-left.
Posted by: Guest on April-01-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