Half circle with CSS (border, outline only)
You could use border-top-left-radius and border-top-right-radius properties to round the corners on the box according to the box’s height (and added borders). Then add a border to top/right/left sides of the box to achieve the effect. Here you go: WORKING DEMO. Alternatively, you could add box-sizing: border-box to the box in order to calculate the … Read more