水平对齐div中的3个按钮
如何在 xhtml 中水平对齐这 3 个按钮?顺便说一下,这是给博主的。
这是我的按钮 xhtml:
<div class='fb-like'>
<fb:like action='like' expr:href='data:post.url' font='arial' layout='button_count' send='true' show_faces='true' width='450'/>
</div>
<div><b:if cond='data:blog.pageType != "static_page"'>
<g:plusone annotation='inline' width='450' expr:href='data:post.url'></g:plusone>
</b:if></div>
<div><b:if cond='data:blog.pageType != "static_page"'>
<a class='twitter-share-button' data-count='none' data-via='MarvinVista' expr:data-text='"Currently reading: " + data:post.title' expr:data-url='data:post.url' href='http://twitter.com/share'>Tweet</a>
</b:if></div>
How can I align this 3 buttons horizontally in xhtml? This is for blogger by the way.
Here's my xhtml for the buttons:
<div class='fb-like'>
<fb:like action='like' expr:href='data:post.url' font='arial' layout='button_count' send='true' show_faces='true' width='450'/>
</div>
<div><b:if cond='data:blog.pageType != "static_page"'>
<g:plusone annotation='inline' width='450' expr:href='data:post.url'></g:plusone>
</b:if></div>
<div><b:if cond='data:blog.pageType != "static_page"'>
<a class='twitter-share-button' data-count='none' data-via='MarvinVista' expr:data-text='"Currently reading: " + data:post.title' expr:data-url='data:post.url' href='http://twitter.com/share'>Tweet</a>
</b:if></div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将它们放置在一个包含的
div
中,为每个div
指定一个设定的宽度,然后将它们浮动
到左侧。You can place them in a containing
div
, give eachdiv
a set width and thenfloat
them to the left.HTMLCSS
HTML
CSS