Twitter bootstrap 为什么引导偏移类不工作?

Twitter bootstrap 为什么引导偏移类不工作?,twitter-bootstrap,twitter-bootstrap-3,bootstrap-4,offset,Twitter Bootstrap,Twitter Bootstrap 3,Bootstrap 4,Offset,我正在用Bootstrap4进行练习。我的网页布局中有两列。我想在引导12列网格系统中将第一列向右推3列,因为它不起作用。这是密码 <div class="container"> <div class="row"> <div class="col-md-offset-3 col-md-3"> <div class="CustomDiv"> Column 1

我正在用Bootstrap4进行练习。我的网页布局中有两列。我想在引导12列网格系统中将第一列向右推3列,因为它不起作用。这是密码

<div class="container">
    <div class="row">
        <div class="col-md-offset-3 col-md-3">
            <div class="CustomDiv">
                Column 1
            </div>
        </div>
        <div class="col-md-3">
            <div class="CustomDiv">
                Column 2
            </div>
        </div>
    </div>
</div>
}


请帮帮我。我已经下载了新的引导版本,也创建了一个新的项目,但没有任何帮助。提前感谢

阅读最新文档:。偏移量发生了变化


col-*-offset=-*
已更改为
offset-*-*

请阅读最新文档:。偏移量发生了变化

col-*-offset=-*
已更改为
offset-*-*

.CustomDiv{
margin:3px;
min-height:300px;
background-color:black;
text-align:center;
font-size:large;
color:white;