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 的边框透明。我尝试了几件事,但没有奏效。我会欣赏一个不使用任何透明图像的纯 CSS 解决方案
示例:JSFiddle
他们是我们可以将不透明度添加到边框的一种方式吗
只需使用像这样透明的颜色即可使其完全透明
border:10px solid transparent;
我的小提琴
而且,如果您想添加不透明度,那么您的这种方法是正确的,它确实会使边框不透明
border-color:rgba(17,17,17,0.7);
你也可以用这个border-color:rgba(244,244,244,0.4); 我的小提琴
border-color:rgba(244,244,244,0.4);