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.
我发现我必须使用以下样式来为我的右边框指定样式:
border-right: 1px solid black;
当我尝试像这样将这些信息合并到我的边框元素中时,它不起作用:
border: 0 1px solid black 0 0;
假设我的语法是错误的,有没有办法只使用边框元素来指定正确的边框样式?
不,对于不同的边框,您必须使用border-right等,但可以指定所有它们然后覆盖:
border: 0px; border-right: ...
没有。边框设置了所有这些。
http://www.w3schools.com/css/css_border.asp
您需要使用特定于您需要的一种。