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.
请在此处查看 Wordpress 视频库:http: //milabalami.com
我希望这两个视频在同一行。它们都在同一个段落中,我没有添加<br>标签。据我所知,CSS 应该是正确的,但我怀疑我在这里遗漏了什么?谁能帮我解决这个难题?
<br>
你可以简单地这样做:
.floatbox { float: left; }
问题是在你<a>身上你有一个<span>风格display:block
<a>
<span>
display:block
你可以通过浮动你来解决这个问题<a>:
<a>或者,通过给你造型display:inline-block
display:inline-block
.floatbox { display:inline-block; }