需要将Pinterest板浮动到右侧

时间:2016-01-07 11:24:29

标签: css css-float styling pinterest

试图让Pinterest板向右浮动。每当任何样式应用于跨度或Pinterest板时它都不会呈现 - 这应该是一个2分钟的工作。见这里:https://jsfiddle.net/Lx07fe43/

<span style="float:right"><a href="https://www.pinterest.com/pinterest/official-news/" data-pin-do="embedBoard" data-pin-board-width="400" data-pin-scale-height="240" data-pin-scale-width="80">_</a></span>

1 个答案:

答案 0 :(得分:0)

应用'text-align:right'而不是float:

此处更新了小提琴https://jsfiddle.net/qaj25bkf/

<div class="float-right">
<a href="https://www.pinterest.com/pinterest/official-news/" data-pin-do="embedBoard" data-pin-board-width="400" data-pin-scale-height="240" data-pin-scale-width="80">_</a>
</div>

.float-right {
text-align:right;
}