I have a div styled like so: Jsfiddle
How can I remove all of the left hand side border, without the ugly curved radius?
Is it possible in CSS? Or is there a hack to do it? (or am I being too picky?)
Thanks Muchly,
Harley
I have a div styled like so: Jsfiddle
How can I remove all of the left hand side border, without the ugly curved radius?
Is it possible in CSS? Or is there a hack to do it? (or am I being too picky?)
Thanks Muchly,
Harley
Is this what you are looking for?
border-radius: 0px 6px 6px 0px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
This will override any border radius css.
0px
and not just 0
? –
Twinberry 0
is unitless, so px
is redundant. Should just be border-radius: 0;
–
Beforetime Is this what you are looking for?
border-radius: 0px 6px 6px 0px;
if you want to remove the border just use : border: 0px;
0
is unitless, so px
is redundant. can just be border: 0;
–
Beforetime © 2022 - 2024 — McMap. All rights reserved.