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.
我正在研究一种设计,其中强标签旨在发送下一行旁边的任何内容。CSS 看起来像这样:
strong { display: block; }
html是这样的:
<p><strong>foo</strong> bar.<p>
问题:强标记和后面的文本之间的空格在下一行显示为意外缩进。我在想,有一种方法可以在使用 jQuery 的强标签之后删除空格。我怎样才能做到这一点?
注意:我不能用 Fiddle 重现这个问题,所以我不知道它是否真的是导致缩进的空间。
既然你没有解决你的问题,我会把它扔掉......
IE 有一个怪癖,至少在怪癖模式下,元素之间的空白被渲染。解决方案是以这样的方式分解 HTML 以使空白不被标记..
一个例子...
<a href="linkk1">This is my test</a><a href="linkk2">Another</a><a href="linkk3">Yet another</a>
看看是否有帮助。