Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个 php 输出
<?=($event ['Field'])?>: <?=($event['Value'])?>
如果我用 div 将其包围,则线接缝会断开,从而使这两个输出出现在文档上的不同行上。
如何在不影响值定位的情况下使字段变粗?
使用跨度(连同相关的 CSS):
<span class="field-name"><?= $event['Field'] ?></span>: <?= $event['Value'] ?>
divs 有一个隐含的display: block,这可以防止它们与文本一起流动。
div
display: block
或者要么为这些 div 定义类,所以让它们在 CSS 中浮动在同一行