简体   繁体   中英

CSS:How to properly remove border using CSS when border-radius is used?

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

-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;

This will override any border radius css.

这是你想要的?

border-radius: 0px 6px 6px 0px;

如果你想删除边框只需使用:border:0px;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM