Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的 div: Jsfiddle
如何在没有丑陋的弯曲半径的情况下删除所有左侧边框?
在CSS中可能吗?或者有没有办法做到这一点?(还是我太挑剔了?)
非常感谢,
哈雷
-webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0;
这将覆盖任何边界半径 css。
这是你想要的?
border-radius: 0px 6px 6px 0px;
如果要删除边框,请使用:border:0px;