你好我一直在努力争取太长时间,我不得不问那些知道我可能会完全吠叫错误树的人。
<div class="field field-name-field-they-say field-type-text-long field-label-above">
<div class="field-label">They Say: </div>
<div class="field-items">
<div class="field-item even">Our juiciest juice to date. It's like a watermelon at peak ripeness, when the color is vivid and the juice drips down your face. Mellow sweetness and you can actually taste the rind. This flavor is perfect to vape at summer barbecues. It smells delicious and produces a lot of vapor. </div>
</div>
它的字段标签'他们说'位。我只想让它与字段项目内联,开始'我们迄今为止最多汁......'
.field-name-field-they-say {
background-color: #232425;
border-radius: 10px;
font-style: italic;
overflow: hidden;
padding: 10px;
}
.field .field-label {
font-weight: bold;
}
我花了半个小时才将我的代码发布在stackoverflow上面,这样你就可以看到你在这里处理的内容:(
由于
答案 0 :(得分:1)
只需在字段标签
上添加float:left
即可
<强> FIDDLE
.field .field-label {
font-weight: bold;
float:left; /* add this */
}