我有一个如下所示的设计,我正在尝试在我的domain中复制
我引用的以上设计不是完整的设计。我们必须向下滚动到底部才能在domain中看到该部分。我能够完成80%的设计。我无法完成的其余20%是我尝试在自己的域中复制的社交媒体图标之间的间距。
在域中,社交媒体图标之间没有间距。 I am wondering how I can increase the spacing between every social media icons so that it looks similar to the above design.
注意:在上面的设计中我已标记箭头,以方便观众
得到我想要完成的确切想法。那些箭不会
出现在设计中,它表示社交媒体之间的间隔
图标。
我尝试在inspect部分中使用CSS代码,但无法复制上述设计。
我用来在网页上获取社交媒体图标的HTML和JS代码是:
<div style="display:inline-block;vertical-align:top">
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.awardwinnersonly.com" data-text="Czech out the books, movies, and music that won major awards" data-via="BClayShannon">Tweet</a>
<script>
! function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0],
p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + '://platform.twitter.com/widgets.js';
fjs.parentNode.insertBefore(js, fjs);
}
}(document, 'script', 'twitter-wjs');
</script>
</div>
<div style="display:inline-block;vertical-align:top" class="fb-like" data-href="http://www.awardwinnersonly.com" data-send="false" data-width="450" data-show-faces="false" data-font="segoe ui">
</div>
<iframe src="https://www.facebook.com/plugins/share_button.php?href=https%3A%2F%2Fdevelopers.facebook.com%2Fdocs%2Fplugins%2F&layout=button&size=small&mobile_iframe=true&width=59&height=20&appId" width="59" height="20" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<g:plus action="share" href="https://www.example.com"></g:plus>
<script src="//platform.linkedin.com/in.js" type="text/javascript">
lang: en_US
</script>
<script type="IN/Share"></script>
最佳答案
您可以为每个社交媒体按钮添加边距,例如:
margin-right: 1em;
例如第一个Twitter按钮,例如:
display:inline-block;vertical-align:top;margin-right: 3em;padding-left: 15%;
您最好使用某些
class
进行操作,以免重复出现相同的“内联”样式。附带说明一下,我还建议将整个“中间”内容包装在一个
<div class="main-content">
中(仅作为示例),以放置整个内容。而不是为每个内容元素设置padding-left: 15%;
。