浮动右按钮而不离开父级div tailwindcss

时间:2019-05-21 07:25:33

标签: css sass tailwind-css

我正在尝试在卡片右侧浮动一个按钮。我希望它显示在右下角。

当我使用右浮标时。它出现在父div的外部,有没有办法正确放置它?

<div class="m-10">
    <div>
        <div class="bg-white shadow-lg border-grey w-1/3 ">
            <div class="p-4 flex">
                <div class="pt-3 text-center font-bold text-2xl w-16  h-16 bg-grey-lightest">
                    D
                </div>
                <div class="ml-4">
                    Team Name
                </div>
            </div>
            <div class="float-right">
                <a :href="'/company/' + team.id">
                    <button class="ml-2 bg-blue hover:bg-blue-dark text-white text-sm font-bold rounded p-2">
                        View
                    </button>
                </a>
            </div>
        </div>
    </div>
</div>

enter image description here

我的代码在这里正在运行沙箱

https://codesandbox.io/s/tailwind-css-nl0ph

2 个答案:

答案 0 :(得分:1)

使用float-right代替使用text-right

答案 1 :(得分:0)

添加此新类以清除浮动元素

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

,然后将该类应用于包含的div(按钮的父div)

来源:https://www.w3schools.com/howto/howto_css_clearfix.asp