发送邮件或丢弃电子邮件时,顶部会显示一个带有消息的黄色框"您的邮件已被丢弃。撤消丢弃"。我想要完全相同的Google css风格。 欢迎提供任何示例和建议。谢谢
请参阅以下图片并附上链接
答案 0 :(得分:4)
另一个例子(直接来自gmail css)
<强> http://jsfiddle.net/VVbZZ/1/ 强>
的CSS:
.notification-container {
left: 0;
top: 0;
margin: 0;
font-family: arial, sans-serif;
font-weight: bold;
visibility: hidden;
z-index: 8;
position: absolute;
text-align: center;
width: 100%;
height: 100%;
}
.notification-message {
position: relative;
display: inline-block;
visibility: visible;
font-size: 80%;
padding: 6px 10px;
background-color: #f9edbe;
border: 1px solid #f0c36d;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
HTML:
<div class="notification-container">
<div class="notification-message">
<span>Loading... <a href="damn.com">Click to learn more</a></span>
</div>
</div>
<强>结果:强>
答案 1 :(得分:1)
使用以下css:
.verticalBox {
margin: 0 0;
position: relative;
top: 8px;
z-index: 990;
border-color: #f0c36d;
background-color: #f9edbe;
padding: 0 10px;
border: 1px solid transparent;
border-radius: 2px;
-webkit-border-radius: 2px;
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
background: #f9edbe;
border-color: #f9edbe;
color: #222;
padding: 0 7px;
font-size: 80%;
font-weight: bold;
text-align: center;
}
并使用以下HTML:
<div class="verticalBox">This is testing</div>
这类似于gmail消息。
<强>结果:强>