Answers for "border -top radius short"

CSS
1

border radius shorthand

/* top-left | top-right | bottom-right | bottom-left */
border-radius: 1px 0 3px 4px;
Posted by: Guest on July-09-2021
3

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