我想将“给我发送电子邮件”按钮与“Skype”按钮放在同一行。我是HTML的新手,所以对我很轻松。
代码是
<!-- emailme Button BEGIN -->
<div id="emailme_div1"></div>
<script>var emailme_id=4714;</script>
<script type="text/javascript" src="http://static.emailmebutton.com/emailme.js"></script>
<!-- emailme Button END -->
<!--Skype 'Skype Me™!' button Begin-->
<a href="skype:grapplerulrich?call"><img src="http://mystatus.skype.com/bigclassic/grapplerulrich" style="border: none;" width="182" height="44" alt="My status" /></a>
<!--Skype 'Skype Me™!' button End-->
答案 0 :(得分:2)
你必须将它们放在相对位置并使用“float:left”将它们放在彼此旁边。
最好的方法是将两个按钮放在“容器”中,然后将两个按钮position:relative
和float:left
在这里:http://jsfiddle.net/cLEFW/
我在你的Skype脚本周围包了一个div,并添加了position:relative
和float:left
。事实上,你甚至不需要使用position:relative
,但是......我已经完成了xD
答案 1 :(得分:0)
你应该float
每个按钮。
给他们一套width
来正确分开他们。
在第一个按钮上添加一些margin-top
以垂直排列。
#emailme_div1{float:left; width:150px; margin-top:9px;}
#skype{float:left;width:150px;}
http://jsfiddle.net/jasongennaro/mn8EZ/
注意:这需要向Skype id
添加a href
。
BTW:您需要清除floats
下面的任何内容。