HTML连载41-水平居中的注意点、盒子居中和内容居中

一、盒子模型练习

我们有个需求:

创建两个盒子,大盒子嵌套一个小盒子,大盒子是红色的,小盒子是蓝色的,并且小盒子在大盒子中是居中的。

 

<!DOCTYPE html>

<html lang="en">

<head>

    <Meta charset="UTF-8">

    <title>Title</title>

    <style>

        .big{

            width:500px;

            height: 500px;

            background-color: red;

            Box-sizing: border-Box;

            border:1px solid;

        }

        .small{

            width:300px;

            height:300px;

            background-color: blue;

            /*margin-left:100px;*/

            /*margin-top:100px;*/

            margin:100px auto;/*这样写是等价于上面两个语句,这种方法就是让我们的小盒子居中

            /*注意点:如果两个盒子是嵌套关系,设置里面的盒子,外边距的话,外面的盒子也会顶下来

            解决方法:在外面的大盒子中添加一个border属性,因此在企业开发中,一般情况下入伏哦需要控制嵌套关系盒子的举例,

            应该首先考虑padding,其次在考虑margin,因为margin本质上是用于控制兄弟关系之间的间隙的,*/

?

        }

</style>

</head>

<body>

<div class="big">

    <div class="small"></div>

</div>

</body>

</html>

 

分享图片

注意点:

(1)

注意点:如果两个盒子是嵌套关系,设置里面的盒子的外边距的话,外面的

盒子也会顶下来 ,即:仅有属性

margin-left:100px;

margin-top:100px;

分享图片

 
   

解决方法:在外面的大盒子中添加一个border属性,因此在企业开发中,一般情况下如果需要控制嵌套关系盒子的距离,应该首先考虑padding,其次在考虑margin,因为margin本质上是用于控制兄弟关系之间的间隙的

(2)我们看到一个新的属性

margin:100px auto

这个前面是距离,后面auto就会将小盒子进行居中,如果写成:margin:0 auto.那么只会在水平方向上进行居中,因此我们要计算好距离像素,写到属性值中。

二、text-align:center和margin:0 auto之间的区别

1.text-align:center;作用:设置盒子中的存储的文字/图片水平居中。

2.margin:0 auto;作用:让盒子自己水平居中。

 

<!DOCTYPE html>

<html lang="en">

<head>

    <Meta charset="UTF-8">

    <title>d116_Box_center_and_content_center</title>

    <style>

        .father{

            width:800px;

            height:500px;

            background-color:red;

            text-align: center;

            margin: 0 auto;

        }

        .son{

            width:100px;

            height:100px;

            background-color: blue;

            margin: 0 auto;

        }

</style>

</head>

<body>

<div class="father">

    我是一个文字

    <br>

    <img src="image/example1.jpg" alt="">

    <div class="son">

?

    </div>

</div>

</body>

</html>

分享图片

三、源码:

d115_Box_in_the_center.html

d116_Box_center_and_content_center.html

地址:

https://github.com/ruigege66/HTML_learning/blob/master/d115_Box_in_the_center.html

https://github.com/ruigege66/HTML_learning/blob/master/d116_Box_center_and_content_center.html?

2.CSDN:https://blog.csdn.net/weixin_44630050(心悦君兮君不知-睿)

3.博客园:https://www.cnblogs.com/ruigege0000/

4.欢迎关注微信公众号:傅里叶变换,个人账号,仅用于技术交流,后台回复“礼包”获取Java大数据学习视频礼包

 

分享图片

相关文章

vue阻止冒泡事件 阻止点击事件的执行 &lt;div @click=&a...
尝试过使用网友说的API接口获取 找到的都是失效了 暂时就使用...
后台我拿的数据是这样的格式: [ {id:1 , parentId: 0, name:...
JAVA下载文件防重复点击,防止多次下载请求,Cookie方式快速简...
Mip是什么意思以及作用有哪些