this就是我在jsfiddle中运行的。
<span style='font-weight:bold'>Summary: </span><p>This is a test.</p>
段落是由自定义html字段生成的,所以我无法真正改变它。我想知道是否有一个代码可以放在段落之前,可以删除2句之间的空格。我希望它看起来像
总结:这是一个测试。
答案 0 :(得分:1)
<p>
标签是块元素。如果您想要在同一行显示将display:inline
设置为<p>
标记
p{display:inline}
&#13;
<!DOCTYPE html>
<html>
<head>
<title>untitled</title>
</head>
<body>
<span style='font-weight:bold'>Summary: </span><p>This is a test.</p>
</body>
</html>
&#13;