【发布时间】:2012-12-26 09:03:03
【问题描述】:
您好,我正在尝试设计一个类对象
<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>
标签
【问题讨论】: