CSS: How to properly remove a border using CSS when using a border radius?

I have a div similar to: Jsfiddle

How can I remove the entire left border without an ugly curved radius?

Is this possible in CSS? Or is there a hack for this? (or am I too picky?)

Thanks,

Harley

+6
source share
3 answers

Is this what you are looking for?

border-radius: 0px 6px 6px 0px; 
+6
source
 -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; 

This will override any css border radius.

+15
source

if you want to remove the border, just use: border: 0px;

-3
source

Source: https://habr.com/ru/post/920343/


All Articles