如何在Bootstrap中改变身体的边界半径

时间:2017-07-09 09:19:10

标签: html5 css3 twitter-bootstrap-3 document-body

我想更改具有类.container-fluid的第一个div容器的边框半径,如何使用bootstrap body's border radius in Bootstrap

来实现

1 个答案:

答案 0 :(得分:0)

将您的内容包裹在<div>中,并将border-radius应用于包装

UPD:在您的css代码中添加以下内容

body > .container-fluid:first-child {
    border-radius: 20px; //for example
}