嗨我正在尝试设计一个类对象
<a href="url here" class="gallery">View Photos</a>
这是我的CSS
.gallery
{
width:60px;
background-color: #09a2e9;
padding:5px;
-moz-border-radius: 3px;
border-radius: 3px;
font-family: Function Pro Light;
color:#fff;
font-weight:bold;
font-size:30px;
}
a.gallery:link {
font-family: Function Pro Light;
color:#fff;
font-weight:bold;
font-size:30px;
}
我想要的是这样的
http://i.stack.imgur.com/Ue6sM.jpg
但我的 CSS 不工作。我该如何解决。
div 拉伸全宽,我根本不希望它拉伸,也不想设置宽度和高度。
另外我如何在不添加的情况下使其居中
<center> </center>
标签