我正在使用Bootstrap.如何将三根柱子制成相同的高度?
这是问题的屏幕截图.我希望蓝色和红色的列与黄色列的高度相同.

这是代码:
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="container-fluid">
<div class="row">
<div class="col-xs-4 panel" style="background-color: red">
some content
</div>
<div class="col-xs-4 panel" style="background-color: yellow">
catz
<img width="100" height="100" src="https://lorempixel.com/100/100/cats/">
</div>
<div class="col-xs-4 panel" style="background-color: blue">
some more content
</div>
</div>
</div>Run Code Online (Sandbox Code Playgroud)
我想在我div的右下角对齐我的按钮.我怎样才能做到这一点?

div的当前css:
float: right;
width: 83%;
margin-right: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
height:625px;
overflow:auto;
Run Code Online (Sandbox Code Playgroud)