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.
我正在尝试缩进一个标题,只有第一行是缩进的。
<a href="LINK" > <span style="width:220px;margin-left:10px;padding-top:10px;font-size:20px;"><? echo $title ?></span> </a>
当我使用上面的代码时,它会在多行上返回标题(这是正确的,因为宽度),但只有顶行是缩进的。我不希望文本与宽度的左侧齐平。
我能做些什么?
你的问题很神秘。我想你是在问如何缩进整个文本块。如果是这样,只需使用填充:
padding-left: 10px;
用于display:block;跨度。这应该会导致整个文本组移动,而不仅仅是第一行。
display:block;