Bootstrap关于盒子(盒模型)边距的设置

关于Bootstrap的盒子(盒模型)边距,其实在之前的很多示例代码中用到了。在博文 Bootstrap的CSS类积累学习 也有收集到不少相关的类。

详细的介绍,请大家参看下面这张图。

示例代码如下:

DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>设置不同的边距title>
    <meta name="viewport" content="width=device-width,initial-scale=1, shrink-to-fit=no">
    <link rel="stylesheet" href="bootstrap-4.5.3-dist/css/bootstrap.css">
    <script src="jquery-3.5.1.slim.js">script>
    <script src="bootstrap-4.5.3-dist/js/bootstrap.min.js">script>
head>
<style>
    div{width: 200px;height: 50px;}
style>
<body class="container">
    
    <h3 class="mb-4 mx-auto border border-primary" style="width:150px">mx-autoh3>
    
    <div class="ml-4 border border-primary">ml-4div>
    <div class="border border-primary">正常的盒子div>
    
    <div class="ml-n4 border border-primary">ml-n4div>
body>
html>

运行效果如下图所示:
Bootstrap关于盒子(盒模型)边距的设置_第1张图片

你可能感兴趣的:(Bootstrap,bootstrap,前端,html)