【发布时间】:2015-08-09 19:31:44
【问题描述】:
我正在尝试使用 CSS 和 HTML 创建样式。
我的风格是这样的:
我试过了,这是我的 HTML:
<div class="download-content">
<div class="download-item">
<div class="download-file">
<div class="front-number">1</div>
<p><a href="">Financial Ratio Analysis</a></p>
<small><span>2013-01-12</span><span>Format | Power Point</span></small>
</div>
</div>
</div>
这是我的 CSS:
.download-content > .download-item > .download-file {
background: #027bc6;
float: right;
width: 100%;
}
.download-content > .download-item > .download-file > .front-number {
background: none repeat scroll 0 0 #000;
border: 5px solid #fff;
border-radius: 50%;
color: #fff;
float: left;
font-size: 40px;
font-weight: bold;
height: 70px;
text-align: center;
width: 70px;
}
这与我的预期结果非常接近。但不是100%。
【问题讨论】:
标签: html css css-shapes