我指的是Twitter 页面主要内容周围的半透明白色边框。它是一直延伸到标题的白色边框。
只是想知道是否有人有一个方便的快速演示。
最新的 Twitter 更新使其只有以下内容才能让您的 Twitter 变得透明...... http://userstyles.org/styles/75782/newtwitter-semi-transparent-stream-and-dash-v0-2
你可以用css3做到这一点。制作一个div:
<div class="container transparent">
Your content
</div>
然后在您的样式表中(现已修复):
.transparent {
background: rgba(255,255,255,.5);
}
不过,查看该推特页面的来源,看起来他们使用了透明的 png:
background: url(https://si0.twimg.com/a/1339096274/t1/img/wash-white-30.png);