这是我的代码:
<div class="large-6 columns">
<div id='box1'>
<div id='text1'>
Name
</div>
<div id='text3'>
LastName
</div>
</div>
</div>
CSS 看起来像这样:
#box1 {
float: left;
height: 125px;
margin-top: 30px;
margin-bottom: 30px;
clear: none;
width: 125px;
border-top-left-radius: 95px;
border-top-right-radius: 95px;
border-bottom-right-radius: 95px;
border-bottom-left-radius: 95px;
background-color: rgb(232, 68, 58);
position:relative;
overflow:visible;
}
#text1 {
float: left;
font-size: 1em;
color: rgb(255, 255, 255);
width: 28%;
height: auto;
text-align: right;
font-weight: 400;
line-height: 1em;
word-wrap: break-word;
margin-left: 69.6%;
margin-top: 53px;
clear: none;
min-height: 0px;
min-width: 0.5em;
font-family: snippet;
overflow:auto;
}
#text3 {
float: left;
font-size: 1em;
color: rgb(0, 0, 0);
width: 72%;
height: auto;
text-align: right;
font-weight: 400;
line-height: 1em;
margin-left: 125px;
margin-top: 0px;
clear: none;
min-height: 0px;
min-width: 0.5em;
font-family: snippet;
position:relative;
overflow:visible;
}
现在这并没有给我所需的结果。Text-3 实际上应该出现在 text-1 旁边。但不知何故,它缠绕到下一个尖齿。
顺便提一句。我在 Zurb Foundation 代码中使用它。在现有 CSS 样式之上编写我的自定义类。
编辑:虽然我解决了这个问题,只是为了让你们中的一些人清楚,Text-1 在圆圈内并且与圆圈的边缘对齐。Text-3 位于圆外,并与圆的边缘左对齐。这样两个文本彼此相邻,一个在圆圈内,一个在圆圈外。