我是网络新手。一切都很好,但在这种情况下border-radius无法在浏览器中工作,如Chrome / FF。 像这样的CSS代码:
.work-step div {
color: #e67e22;
margin: 2px solid #e67e22;
display: inline-block;
border-radius: 50%; //not working
height: 50px;
width: 50px;
text-align: center;
float: left;
padding: 5px;
font-size: 120%;
margin-left: 25px;
}
答案 0 :(得分:2)
将此添加到您的css
overflow:hidden;
答案 1 :(得分:0)
试试这个:
.work-step {
background-color: #555555;
color: #e67e22;
margin: 2px solid #e67e22;
display: inline-block;
border-radius: 50%;
height: 50px;
width: 50px;
text-align: center;
float: left;
padding: 5px;
font-size: 120%;
margin-left: 25px;
}