CSS学习笔记之中级教程(一)

news2024/11/25 9:51:45

1、CSS 布局 - display 属性

1.1 display 属性

  • display 属性是用于控制布局的最重要的 CSS 属性。

  • display 属性规定是否/如何显示元素。

  • 每个 HTML 元素都有一个默认的 display 值,具体取决于它的元素类型。大多数元素的默认 display 值为 blockinline

1.2 块级元素(block element

  • 块级元素总是从新行开始,并占据可用的全部宽度(尽可能向左和向右伸展)。
  • 会占领页面的一行,其后多个block元素自动换行、 可以设置width,height,设置了width后同样也占领一行、同样也可以设置 marginpadding属性。

块级元素的一些例子:

  • <div>
  • <h1> - <h6>
  • <p>
  • <form>
  • <header>
  • <footer>
  • <section>

1.3 行内元素(inline element

  • 内联元素不从新行开始,仅占用所需的宽度。
  • 与其他元素在同一行上,高度,行高以及底边距不可改变,高度就是内容文字或者图片的宽度,不可以改变。

行内元素的一些例子:

  • <span>
  • <a>
  • <img>

1.4 Display: none

  • display: none; 通常与 JavaScript 一起使用,以隐藏和显示元素,而无需删除和重新创建它们。如果您想知道如何实现此目标,请查看本页面上的最后一个实例。

  • 默认情况下,<script> 元素使用 display: none;。

1.5 覆盖默认的 Display

  • display: inline; 将内容设置为行内元素
    将元素显示为块级元素,从而可以更好地操控元素的宽高,以及内外边距,每一个块级元素都是从新的一行开始。
  • display: block;将内容设置为块元素
    将元素显示为行内元素,高度,行高以及底边距不可改变,高度就是内容文字或者图片的宽度,不可以改变。多个相邻的行内元素排在同一行里,知道页面一行排列不下,才会换新的一行。
li {
  display: inline;
}
a {
  display: block;
}

1.6 隐藏元素

  • display:none 隐藏元素,不占位
  • visibility:hidden 隐藏元素,占位

(1)display:none

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
h1.hidden{
  display: none;
}

</style>
<body>
  <h1>此标题可见</h1>
  <h1 class="hidden">此标题不可见</h1>
  <p>请注意, display: none; 的标题不会占用任何空间。</p>
</body>
</html>

运行效果:
在这里插入图片描述
(2)visibility:hidden

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
h1.hidden{
  display: none;
}
h1.hiddenvisibility{
  visibility: hidden;
}

</style>
<body>
  <h1>此标题可见</h1>
  <!-- <h1 class="hidden">此标题不可见</h1> -->
  <h1 class="hiddenvisibility">此标题不可见,占空间</h1>
  <p>请注意, display: none; 的标题不会占用任何空间。</p>
</body>
</html>

运行效果:
在这里插入图片描述

2、CSS 布局 - widthmax-width

  • 外边距设置为 automargin: auto),以将元素在其容器中水平居中
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
div.width{
  width: 500px;
  border: 3px solid #73AD21;
  margin: auto;
}
div.maxwidth{
  max-width: 500px;
  margin: auto;
  border:3px solid #73AD21;
}

</style>
<body>
  <div class="width">这个 div 元素的宽度是:500px;</div>
  <br><div class="maxwidth">这个 div 元素的最大宽度是:500px;</div><p><b>提示:</b>将浏览器窗口拖动到小于500px的宽度,以查看这两个 div !</p>

</body>
</html>

运行效果:
在这里插入图片描述

3、CSS 布局 - position 属性

  • position 属性规定应用于元素的定位方法的类型。

有五个不同的位置值:

  • static
  • relative
  • fixed
  • absolute
  • sticky

3.1 默认属性: position: static

  • HTML 元素默认情况下的定位方式为 static(静态)。

  • 静态定位的元素不受 top、bottom、leftright 属性的影响。

  • position: static; 的元素不会以任何特殊方式定位;它始终根据页面的正常流进行定位

  • 默认情况下,块级元素占据其父容器的整个宽度,并垂直堆叠。

  • 内联元素则不会创建换行符,并与其他元素在同一行内显示。

  • 具有position: static;的元素不受z-index属性影响。它们的堆叠顺序由它们在文档树中的位置决定,并且无法改变。

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  div.static {
    border: 3px solid #73AD21;
    position: static;
  }
</style>

<body>
  <div class="static">这个 div 元素设置 position: static</div><p><b>提示:</b>设置 position: static; 的元素不会以任何特殊方式定位;它是始终根据页面的正常流进行定位!</p>

</body>

</html>

运行效果:
在这里插入图片描述

3.2 相对定位:position: relative;

  • 具有position: relative;的元素仍然遵循文档流,并且不会脱离文档流。相对定位的元素仍然占据其原始位置,其他元素的布局不会受到影响。
  • 可以使用top、right、bottomleft属性来定义相对于元素原始位置的偏移量。这些偏移量是相对于元素自身进行计算的。
  • 当使用相对定位时,元素不会对其他相对定位或绝对定位的元素产生影响。其他元素的定位不会受到影响,它们仍会按照正常流程进行显示。
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  *{
    margin: 0px;
    padding: 0px;
  }
  /* 默认属性 */
  div.static {
    border: 3px solid #73AD21;
    position: static;
  }
  div.relative{
    position: relative;
    left: 50px;
    top: 50px;
    border: 3px solid #73AD21;
  }

</style>

<body>
  <div class="static">这个 div 元素设置 position: static</div><p><b>提示:</b>设置 position: static; 的元素不会以任何特殊方式定位;它是始终根据页面的正常流进行定位!</p>

  <div class="relative">这个 div 元素设置 position: relative</div> 
</body>
 
</html>

运行效果:

在这里插入图片描述

3.3 固定定位:position: fixed;

  • 固定定位,元素的位置相对于浏览器窗口进行定位,不会随页面滚动而改变。可以使用top、bottom、left、right属性来指定定位的偏移量。
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  *{
    margin: 0px;
    padding: 0px;
  }
  /* 默认属性 */
  div.static {
    border: 3px solid #73AD21;
    position: static;
  }
  div.relative{
    position: relative;
    left: 50px;
    top: 50px;
    border: 3px solid #73AD21;
  }
  div.fixed{
    position: fixed;
    right: 0px;
    bottom: 50px;
    border: 3px solid #73AD21;
  }

</style>

<body>
  <div class="static">这个 div 元素设置 position: static</div><p><b>提示:</b>设置 position: static; 的元素不会以任何特殊方式定位;它是始终根据页面的正常流进行定位!</p>

  <div class="relative">这个 div 元素设置 position: relative</div> 

  
  <div class="fixed">这个 div 元素设置 position: fixed</div> 
</body>
 
</html>

运行效果:
在这里插入图片描述

3.4 绝对定位:position: absolute;

  • position: absolute; 的元素相对于最近的定位祖先元素进行定位(而不是相对于视口定位,如 fixed)。

  • 然而,如果绝对定位的元素没有祖先,它将使用文档主体(body),并随页面滚动一起移动。

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  * {
    margin: 0px;
    padding: 0px;
  }

  div.relative {
    position: relative;
    left: 50px;
    top: 50px;
    width: 500px;
    height: 300px;
    border: 3px solid #73AD21;
  }

  div.absolute {
    position: absolute;
    border: 3px solid #73AD21;
    width: 100px;
    left: 20px;
    top: 80px;
  }
</style>

<body>

  <div class="relative">
    <p> 这个 div 元素设置 position: relative</p>

    <div class="absolute">这个 div 元素设置 position: absolute</div>

  </div>

</body>

</html>

运行效果:
在这里插入图片描述

3.5 粘性定位:position: sticky;

  • position: sticky; 的元素根据用户的滚动位置进行定位。

  • 粘性元素根据滚动位置在相对(relative)和固定(fixed)之间切换。起先它会被相对定位,直到在视口中遇到给定的偏移位置为止 - 然后将其“粘贴”在适当的位置(比如 position:fixed)。

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  * {
    margin: 0px;
    padding: 0px;
  }

  div.sticky{
    position: -webkit-sticky;
    position: sticky;
    top: 0px;
    background-color:aquamarine;
    border: 3px solid #73AD21;
  }
</style>

<body>

  <p>哈哈哈哈</p>

  <div class="sticky">这个 div 元素设置 position: sticky</div>
  <div style="padding-bottom: 1000px">
    <p>在此例中,当您到达元素的滚动位置时,粘性元素将停留在页面顶部(top: 0)。</p>
  <p>向上滚动以消除粘性。</p>
  <p>一些启用滚动的文本.. Lorem ipsum dolor sit amet, illum definitiones no quo, maluisset concludaturque et eum, altera fabulas ut quo. Atqui causae gloriatur ius te, id agam omnis evertitur eum. Affert laboramus repudiandae nec et. Inciderint efficiantur his ad. Eum no molestiae voluptatibus.</p>
  <p>一些启用滚动的文本.. Lorem ipsum dolor sit amet, illum definitiones no quo, maluisset concludaturque et eum, altera fabulas ut quo. Atqui causae gloriatur ius te, id agam omnis evertitur eum. Affert laboramus repudiandae nec et. Inciderint efficiantur his ad. Eum no molestiae voluptatibus.</p>

  </div>
</body>

</html>

运行效果:
在这里插入图片描述
滚动后效果:
在这里插入图片描述

3.6 重叠元素:z-index

  • 在对元素进行定位时,它们可以与其他元素重叠。

  • z-index 属性指定元素的堆栈顺序(哪个元素应放置在其他元素的前面或后面)。

  • 元素可以设置正或负的堆叠顺序

  • 具有较高堆叠顺序的元素始终位于具有较低堆叠顺序的元素之前。

  • 如果两个定位的元素重叠而未指定 z-index,则位于 HTML 代码中最后的元素将显示在顶部。

(1) z-index: -1;

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
img{
  position: absolute;
  z-index: -1;
  width: 200px;
  height: 200px;
}

</style>
<body>
  <div>
<img src="imgs/icon_mess_sellorder.png">
<p>你好呀哈哈哈</p>
  </div>
  
</body>
</html>

运行效果:
在这里插入图片描述

(2) z-index: 1;

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
img{
  position: absolute;
  z-index: 1;
  width: 200px;
  height: 200px;
}

</style>
<body>
  <div>
<img src="imgs/icon_mess_sellorder.png">
<p>你好呀哈哈哈</p>
  </div>
  
</body>
</html>

运行效果:
在这里插入图片描述

3.7 定位图像中的文本

  • Top + Left
  • Top +Right
  • Bottom +Left
  • Bottom +Right
  • Centered
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  div.relative {
    position: relative;
  }

  img {
    width: 200px;
    height: 200px;
    opacity: 0.7;
    z-index: -1;
  }

  p.topleft {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 25px;
  }

  p.topright {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 25px;
  }

  p.bottomleft {
    position: absolute;
    bottom: 0px;
    left: 0px;
    font-size: 25px;
  }

  p.bottomright {
    position: absolute;
    bottom: 0px;
    right: 0px;
    font-size: 25px;
  }

  p.centered {
    position: absolute;
    text-align: center;
    font-size: 25px;
    width: 100%;
  }
</style>

<body>
  <div>
    <img src="imgs/icon_mess_sellorder.png">
    <p class="topleft">左上</p>
    <p class="topright">右上</p>
    <p class="bottomleft">左下</p>
    <p class="bottomright">右下</p>
    <p class="centered">居中</p>
  </div>

</body>

</html>

运行效果:
在这里插入图片描述

4、CSS 布局 - 溢出:overflow

  • overflow 属性指定在元素的内容太大而无法放入指定区域时是剪裁内容还是添加滚动条。
  • overflow 属性仅适用于具有指定高度的块元素。

overflow 属性可设置以下值:

  • visible - 默认。溢出没有被剪裁。内容在元素框外渲染
  • hidden - 溢出被剪裁,其余内容将不可见
  • scroll - 溢出被剪裁,同时添加滚动条以查看其余内容
  • auto - 与 scroll 类似,但仅在必要时添加滚动条

4.1 overflow: visible

  • 默认。溢出没有被剪裁。内容在元素框外渲染
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
div.visible{
  width: 100px;
  height: 100px;
  overflow: visible;
  border:  1px solid #777;
  background-color: aquamarine;
}

</style>
<body>
  <div class="visible" >
    <p>overflow: visible 默认情况下,溢出是可见的,这意味着它不会被裁剪,,超出部分在元素外渲染</p>
  </div>

</body>
</html>

运行效果:
在这里插入图片描述

4.2 overflow: hidden;

  • 使用 hidden 值,溢出会被裁剪,其余内容被隐藏
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>

div.hidden{
  margin-top: 100px;
  width: 100px;
  height: 100px;
  overflow: hidden;
  border:  1px solid #777;
  background-color: aquamarine;
}

</style>
<body>

  <div class="hidden" >
    <p>overflow: hidden  会剪裁溢出,并隐藏内容的其余部分</p>
  </div>

</body>
</html>

运行效果:

在这里插入图片描述

4.3 overflow: scroll;

  • scroll,溢出将被裁剪,并添加滚动条以便在框内滚动。请注意,这将在水平和垂直方向上添加一个滚动条(即使您不需要它)
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>

div.scroll{
  margin-top: 20px;
  width: 100px;
  height: 100px;
  overflow: scroll;
  border:  1px solid #777;
  background-color: aquamarine;
}

</style>
<body>

  <div class="scroll" >
    <p>overflow: scroll 溢出部分会被裁剪,并自动添加滚动条,滚动可见其余部分</p>
  </div>

</body>
</html>

运行效果:
在这里插入图片描述

4.4 overflow: auto;

  • auto 值类似于 scroll,但是它仅在必要时添加滚动条
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
div.auto{
  margin-top: 20px;
  width: 100px;
  height: 100px;
  overflow: auto;
  border:  1px solid #777;
  background-color: aquamarine;
}

</style>
<body>
  <div class="auto" >
    <p>overflow: auto 溢出部分会被裁剪,但只会在必要时候增加滚动条(内容超出元素高度时候自动增加滚动条),滚动可见其余部分</p>
  </div>
  <div class="auto" >
    <p>overflow: auto 哈哈哈</p>
  </div>
</body>
</html>

运行效果:
在这里插入图片描述

4.5 overflow-x 和 overflow-y

overflow-xoverflow-y 属性规定是仅水平还是垂直地(或同时)更改内容的溢出:

  • overflow-x 指定如何处理内容的左/右边缘。
  • overflow-y 指定如何处理内容的上/下边缘。
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>

div.overflow-xy{
    margin-top: 20px;
  width: 100px;
  height: 100px;
  overflow-x: hidden;
  overflow-y: scroll;
  border:  1px solid #777;
  background-color: aquamarine;
}

</style>
<body>

  <div class="overflow-xy" >
    <p>overflow-x 和 overflow-y 属性规定是仅水平还是垂直地(或同时)更改内容的溢出</p>
  </div>
</body>
</html>

运行效果:
在这里插入图片描述

5、CSS 布局 - 浮动和清除:floatclear

  • CSS float 属性规定元素如何浮动。

  • CSS clear 属性规定哪些元素可以在清除的元素旁边以及在哪一侧浮动。

5.1 浮动:float 属性

  • float 属性用于定位和格式化内容,例如让图像向左浮动到容器中的文本那里。

float 属性可以设置以下值之一:

  • left - 元素浮动到其容器的左侧
  • right - 元素浮动在其容器的右侧
  • none - 元素不会浮动(将显示在文本中刚出现的位置)。默认值。
  • inherit - 元素继承其父级的 float 值

5.1.1 float: right;

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  * {
    margin: 0px;
    padding: 0px;
  }

  div.block{
    display: block;
  }

  img.right {
    width: 100px;
    height: 100px;
    float: right;
    margin-left: 20px;
  }

  img.left {
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 20px;
  }
</style>

<body>

  <div class="block">
    <p><img class="right" alt="pic" src="imgs/icon_mess_sellorder.png">图片在文字右边</p>
  </div>

</body>

</html>

运行效果:
在这里插入图片描述

5.1.2 float: left;

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  * {
    margin: 0px;
    padding: 0px;
  }

  div.block{
    display: block;
  }

  img.right {
    width: 50px;
    height: 50px;
    float: right;
    margin-left: 20px;
  }

  img.left {
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 20px;
  }
</style>

<body>

  <!-- <div class="block">
    <p><img class="right" alt="pic" src="imgs/icon_mess_sellorder.png">图片在文字右边</p>
  </div> -->
  <div class="block">
  <p><img class="left" alt="pic" src="imgs/icon_mess_sellorder.png">图片在文字左边图片在文字左边图片在文字左边图片在文字左边图片在文字左边图片在文字左边图片在文字左边图片在文字左边图片在文字左边</p>
</div>
</body>

</html>

运行效果:
在这里插入图片描述

5.1.3 float: none;

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<style>
  * {
    margin: 0px;
    padding: 0px;
  }

  div.block{
    display: block;
  }
  img.none{
    width: 50px;
    height: 50px;
    float: none;
  }
</style>

<body>

<div class="block">
  <p><img class="none" alt="pic" src="imgs/icon_mess_sellorder.png">文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字文字</p>
</div>
</body>

</html>

运行效果:在这里插入代码片
在这里插入图片描述

5.2 清除: clearclearfix

5.2.1 clear

  • clear 属性指定哪些元素可以浮动于被清除元素的旁边以及哪一侧。
  • 使用 clear 属性的最常见用法是在元素上使用了 float 属性之后。

clear 属性可设置以下值之一:

  • none - 允许两侧都有浮动元素。默认值
  • left - 左侧不允许浮动元素
  • right- 右侧不允许浮动元素
  • both - 左侧或右侧均不允许浮动元素
  • inherit - 元素继承其父级的 clear 值
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <!-- 外部引入css -->
  <link rel="stylesheet" type="text/css" href="css/baseStyle.css">
</head>
<style>
  div.ex1 {
    float: left;
    border: 1px solid #777;
  }
  div.ex2{
    clear: left;
  }

  img.left {
    width: 50px;
    height: 50px;
    float: left;
  }
</style>

<body>
  <h1>不使用clear</h1>

  <div class="ex1">
    内容1
  </div>
  <div >
    内容2内容2内容2内容2内容2内容2内容2
  </div>
  <h1>使用clear</h1> 
  <div class="ex1">
    内容1
  </div>
  <div class="ex2">
    内容2内容2内容2内容2内容2内容2内容2
  </div>


</body>

</html>

运行效果:
在这里插入图片描述

5.2.2 clearfix

  • 如果一个元素比包含它的元素高,并且它是浮动的,它将“溢出”到其容器之外,然后我们可以向包含元素添加 overflow: auto;,来解决此问题
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <!-- 外部引入css -->
  <link rel="stylesheet" type="text/css" href="css/baseStyle.css">
</head>
<style>
  div.ex1 {
    clear: both;
    border: 1px solid #777;
  }

  div.clearfix{
    clear: both;
    overflow: auto;
    border: 1px solid #777;
  }

  img.float {
    width: 50px;
    height: 50px;
    float: left;
  }
</style>

<body>
  <h1>沒有使用clearfix </h1>
  <div class="ex1">
    <img class="float" src="imgs/icon_mess_sellorder.png">
    <p>内容内容内容内容内容内容内容</p>
  </div>
  <h1 style="padding-top: 50px">使用clearfix </h1>
  <div class="clearfix">
    <img class="float" src="imgs/icon_mess_sellorder.png">
    <p>内容内容内容内容内容内容内容</p>
  </div>

</body>

</html>

运行效果:
在这里插入图片描述

5.3 补充

CSS 布局 - 浮动实例

5.3.1 box-sizing: border-box;(添加边距后会破坏排版的解决方法)

  • 您可以轻松地并排创建三个浮动框。但是,当您添加一些内容来扩大每个框的宽度(例如,内边距或边框)时,这个框会损坏。 box-sizing 属性允许我们在框的总宽度(和高度)中包括内边距和边框,确保内边距留在框内而不会破裂。

(1)未使用

<!DOCTYPE html>
<html>
<head>
<style>


.box {
  float: left;
  width: 33.33%;
  padding: 50px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
</style>
</head>
<body>

<h1>网格框</h1>

<p>并排浮动的框:</p>

<div class="clearfix">
  <div class="box" style="background-color:#bbb">
  <p>框中的一些文本。</p>
  </div>
  <div class="box" style="background-color:#ccc">
  <p>框中的一些文本。</p>
  </div>
  <div class="box" style="background-color:#ddd">
  <p>框中的一些文本。</p>
  </div>
</div>

</body>
</html>

运行效果:
在这里插入图片描述
(2)使用后:

<!DOCTYPE html>
<html>
<head>
<style>
* {
  box-sizing: border-box;
}

.box {
  float: left;
  width: 33.33%;
  padding: 50px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
</style>
</head>
<body>

<h1>网格框</h1>

<p>并排浮动的框:</p>

<div class="clearfix">
  <div class="box" style="background-color:#bbb">
  <p>框中的一些文本。</p>
  </div>
  <div class="box" style="background-color:#ccc">
  <p>框中的一些文本。</p>
  </div>
  <div class="box" style="background-color:#ddd">
  <p>框中的一些文本。</p>
  </div>
</div>

<p>请注意,我们还用了 clearfix hack 来处理布局流,并添加了 box-sizing 属性,以确保框不会由于额外的内边距(填充)而损坏。尝试删除此代码以查看效果。</p>

</body>
</html>

运行效果:
在这里插入图片描述

5.3.2 水平多个框的时候,保证高度一致(高度为最高的那个框)

  • display: flex;将对象作为弹性伸缩盒显示
    (1)未使用:
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <link rel="stylesheet" type="text/css" href="css/baseStyle.css">
</head>
<style>
  * {
    /* padding和border的值就不会在影响元素的宽高,相当于把padding和border的值都算在content里 */
    box-sizing: border-box;
  }

  .clearfix::after{
    content: '';
    clear: both;
    display: table;
  }

  /* div.flex {
    display: flex;
  } */

  div.ex1 {
    float: left;
    width: 33%;
    background-color: aquamarine;
    padding: 50px;
  }

  div.ex2 {
    float: left;
    width: 33%;
    background-color: bisque;
    padding: 50px;
  }

  div.ex3 {
    float: left;
    width: 33%;
    background-color: cadetblue;
    padding: 50px;
  }

  /* p{
    text-align: center;
  } */
</style>

<body>
  <!-- <div class="flex"> -->
    <div class="ex1">
      <p>文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1</p>
    </div>
    <div class="ex2">
      <p>文本内容2</p>
    </div>
    <div class="ex3">
      <p>文本内容3</p>
    </div>
  <!-- </div> -->
</body>

</html>

运行效果:
在这里插入图片描述

(2)使用后:

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <link rel="stylesheet" type="text/css" href="css/baseStyle.css">
</head>
<style>
  * {
    /* padding和border的值就不会在影响元素的宽高,相当于把padding和border的值都算在content里 */
    box-sizing: border-box;
  }

  .clearfix::after{
    content: '';
    clear: both;
    display: table;
  }

  div.flex {
    display: flex;
  }

  div.ex1 {
    float: left;
    width: 33%;
    background-color: aquamarine;
    padding: 50px;
  }

  div.ex2 {
    float: left;
    width: 33%;
    background-color: bisque;
    padding: 50px;
  }

  div.ex3 {
    float: left;
    width: 33%;
    background-color: cadetblue;
    padding: 50px;
  }

  /* p{
    text-align: center;
  } */
</style>

<body>
  <div class="flex">
    <div class="ex1">
      <p>文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1文本内容1</p>
    </div>
    <div class="ex2">
      <p>文本内容2</p>
    </div>
    <div class="ex3">
      <p>文本内容3</p>
    </div>
  </div>
</body>

</html>

运行效果:
在这里插入图片描述

5.3.3 导航栏 练习

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <link rel="stylesheet" href="css/baseStyle.css">

  <style>
    ul {
      width: 100%;
      background-color: black;
      margin: 0;
      padding: 0;
      overflow: hidden;
    }

    li  a{
      float: left;
      padding: 10px 15px;
      font-size: 15px;
      color: white;
      display: inline-block;
    }

    a.choose {
      background-color: brown;
    }


    a {
      color: white;
      /* 取消下划线 */
      text-decoration: none;
      /* 文字居中 */
      text-align: center;
    }

    /* 鼠标放置效果 */
    a:hover {
      background-color: aquamarine;
    }
  </style>
</head>

<body>



  <ul>
    <li ><a  class="choose" href="html_jump_page.html">首页</a></li>
    <li ><a class="unchoose" href="html_jump_page.html">控制台</a></li>
    <li ><a class="unchoose" href="html_jump_page.html">个人中心</a></li>
  </ul>
</body>

</html>

运行效果:
在这里插入图片描述

5.3.4 简单布局练习

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>简单布局</title>
  <!-- 引用外部css样式 -->
  <!-- <link rel="stylesheet" href="css/baseStyle.css"> -->

  <style>
    /* padding和border的值就不会在影响元素的宽高,相当于把padding和border的值都算在content里 */
    * {
      box-sizing: border-box;
    }

    /* 防止溢出 */
    .clearfix::after {
      content: "";
      clear: both;
      display: table;
    }

    div.header {
      background-color: grey;
      padding: 20px 10px;
      margin: 10px;
    }



    h1.header {
      color: white;
      font-size: 20px;
    }

    div.footer {
      background-color: grey;
      padding: 20px 10px;
    }

    ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    li {
      background-color: #33b5e5;
      color: white;
      padding: 10px 20px;
      margin-bottom: 10px;
    }

    .column {
      float: left;
      padding: 15px;
    }

    .menu {
      width: 25%;
    }

    .content {
      width: 75%;
    }
  </style>
</head>

<body>

  <!-- 顶部标题 -->
  <div class="header">
    <h1 class="header">Shang Hai</h1>
  </div>
  <!-- 中间 -->
  <div class="clearfix">

    <div class="column menu">
      <!-- 左侧导航栏 -->
      <ul>
        <li>The Fight</li>
        <li>The City</li>
        <li>The IsIand</li>
        <li>The Food</li>
      </ul>
    </div>
    <!-- 右侧内容 -->
    <div class="column content">
      <h1>The City</h1>
      <p>Shanghai is one of the four direct-administered municipalities of the People's Republic of China. Welcome to
        Shanghai!</p>
      <p>You will learn more about web layout and responsive web pages in a later chapter.</p>
    </div>

  </div>
   <!-- Footer -->
   <div class="header">
    <h1 class="header">Footer Text</h1>
  </div>

</body>

</html>

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1671877.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

Hbase基础操作Demo(Java版)

一、前置条件 HBase服务&#xff1a;【快捷部署】023_HBase&#xff08;2.3.6&#xff09;开发环境&#xff1a;Java&#xff08;1.8&#xff09;、Maven&#xff08;3&#xff09;、IDE&#xff08;Idea 或 Eclipse&#xff09; 二、相关代码 代码结构如上图中①和② pom.x…

CNN实现fashion_mnist数据集分类(tensorflow)

1、查看tensorflow版本 import tensorflow as tfprint(Tensorflow Version:{}.format(tf.__version__)) print(tf.config.list_physical_devices())2、加载fashion_mnist数据与预处理 import numpy as np (train_images,train_labels),(test_images,test_labels) tf.keras.d…

2024年5月树莓集团快讯

树莓集团近期快讯 1 园区专场招聘会进校园 国际数字影像产业园联合四川城市职业学院的专场招聘会成功召开&#xff0c;共计提供400余个工作岗位。 2 园区硬件优化再升级 园区硬件优化再升级&#xff0c;智能门禁系统及人脸识别系统下周投入使用。 3 基地短剧合作交流 天府…

第10篇:创建Nios II工程之控制单个七段数码管

Q&#xff1a;还记得之前使用Verilog case语句来描述实现七段数码管的逻辑功能。本期我们创建Nios II工程用C语言代码实现相同的功能。 A&#xff1a;基本原理&#xff1a;一个七段数码管由7个发光二极管LED组成&#xff0c;所以控制一个数码管的显示即控制7个LED。我们在之前…

江门水文分局开展防灾减灾主题宣传活动

5月11日&#xff0c;第16个全国防灾减灾日到来之际&#xff0c;广东省水文局江门水文分局联合江门市五邑义工联合会直属义工服务总队&#xff08;亲子服务队&#xff09;在江门市万达广场举办了一场别开生面的防灾减灾主题宣传活动&#xff0c;进一步培育孩子们的防灾减灾的意识…

[ACTF新生赛2020]SoulLike

没见过的错误&#xff1a; ida /ctg目录下的hexrays.cfg文件中的MAX_FUNCSIZE64 改为 MAX_FUNCSIZE1024 然后就是一堆数据 反正就是12个字符 from pwn import * flag"actf{" k0 for n in range(12):for i in range(33,127):pprocess("./SoulLike")_flag…

调剂”小清华“、不保护一志愿?——兰州大学25计算机考研考情分析

兰州大学&#xff08;Lanzhou University&#xff09;&#xff0c;简称“兰大”&#xff0c;是中华人民共和国教育部直属 全国重点大学&#xff0c;中央直管副部级建制&#xff0c;位列国家首批“双一流(A 类)”、“211 工 程”、“985 工程”大学行列&#xff0c;入选国家“珠…

asp.net core mvc razor动态编译

开发mvc过程中razor页面需要重启才能编译&#xff0c;非常麻烦&#xff0c;能否实现动态编译&#xff0c;微软官方提供了一个包能实现 新建.net 6 mvc项目 安装Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation 修改csproj <Project Sdk"Microsoft.NET.Sdk.Web…

拉链表实现过程+案例

第一种 1.从ODS层获取增量数据(上一天新增和更新的数据) 2.拿着DWD原始拉链表数据 left join 增量数据 ,修改原始拉链中历史数据的结束时间 3.拿着left join 的结果集 union all 增量数据 4.把最新的拉链数据优先保存到DWD对应的临时表中 5.使用insertselect 方式把临时表中…

宝塔纯净版 7.6.0版本无需手机登录 [稳定版本/推荐]

下载地址&#xff1a;宝塔纯净版 7.6.0版本无需手机登录.zip 宝塔纯净版介绍 无需手机登录&#xff1a;不再有手机登录提示&#xff0c;或按照提示输入任意手机号密码即可模拟绑定&#xff1b; 安全&#xff1a;剥离了所有与宝塔官方的通信、上报、下发&#xff1b;并且不与…

栈和队列经典OJ题详解

目录 一、用栈实现队列 1.1 题目 1.2 思路 1.3 C语言题解 1.3.1 栈接口 1.3.2 代码实现 二、用队列实现栈 2.1 题目 2.2 思路 2.2.1 如何设计出栈 2.2.2 如何设计入栈 2.3 C语言题解 2.3.1 队列接口 2.3.2 代码实现 三、括号匹配问题 3.1 题目 3.2 思路 3.3 …

【C++】继承与多态的一些练习题

学习完了继承与多态&#xff0c;当然要来点练习题啦~ 第一题&#xff1a; class Base1 { public: int _b1; }; class Base2 { public: int _b2; }; class Derive : public Base1, public Base2 { public: int _d; }; int main(){ Derive d; Base1* p1 &d; Base2* p2…

Ubuntu22.04怎么安装cuda11.3

环境&#xff1a; WSL2 Ubuntu22.04 问题描述&#xff1a; Ubuntu22.04怎么安装cuda11.3 之前是11.5 解决方案&#xff1a; 在Ubuntu 22.04上安装CUDA 11.3需要一些步骤&#xff0c;因为CUDA 11.3不是为Ubuntu 22.04官方支持的版本。但是&#xff0c;您仍然可以通过以下步…

Linux提权--定时任务--打包配合 SUID(本地)文件权限配置不当(WEB+本地)

免责声明:本文仅做技术交流与学习... 目录 定时任务 打包配合 SUID-本地 原理: 背景: 操作演示: 分析: 实战发现: 定时任务 文件权限配置不当-WEB&本地 操作演示: 定时任务 打包配合 SUID-本地 原理: 提权通过获取计划任务执行文件信息进行提权 . 1、相对路径和…

Spring框架核心:揭秘Java厨房的智能烹饪艺术

前情回顾&#xff1a;Spring框架深度解析&#xff1a;打造你的Java应用梦工厂 六. 实现控制反转 6.1 描述如何在Spring中实现IoC 在Spring Town的厨房里&#xff0c;实现控制反转就像是将食材的采购和准备过程外包给了一个智能系统。这个系统知道每种食材的特性&#xff0c;也…

【数据可视化01】matplotlib实例介绍1

目录 一、引言二、实例介绍1.柱状图1)简单柱状图2)堆叠柱状图 2.线条形式3.折线图&#xff08;多子图&#xff09;4.散点图5.水平和垂直线条6.饼状图1&#xff09;饼状图2&#xff09;“条形饼”图 一、引言 matplotlib是一个用于绘制数据可视化的Python库。它可以创建各种静态…

杠上Google I/O?OpenAI抢先一天直播,ChatGPT或将具备通话功能

本周的 AI 圈注定热闹非凡。 当地时间 5 月 13 日&#xff0c;OpenAI 将直播发布 ChatGPT 与 GPT-4 的更新。次日&#xff0c;Google I/O 如约而至。不同于 I/O 大会是谷歌的年度盛会&#xff0c;OpenAI 此次的临时发布颇有点抢热度的意思。这对纠缠已久的「老对头」此次又会如…

宝塔助手v1.4.1/手机操控云服务器的神器软件

宝塔助手是以宝塔Linux面板提供的API开发的一款可以随时随地管理服务器的APP。通过这款APP你可以随时随地的查看一台或多台服务器的运行情况&#xff0c;对服务器网站、FTP、数据库、文件进行管理。内置文件编辑器&#xff0c;可以对网站文件进行修改。 链接&#xff1a;https:…

Spring框架深度解析:打造你的Java应用梦工厂

想要在Java企业级应用开发中大展身手&#xff1f;Spring框架的核心容器是你不可或缺的伙伴&#xff01; 文章目录 一. 引言1.1 介绍Spring框架的重要性1.2 阐述核心容器在Spring框架中的作用1.3 故事开端 二. 背景介绍2.1 描述Spring框架的发展历程2.2 概述Spring框架的主要特点…

计算机Java项目|Springboot房产销售系统

作者主页&#xff1a;编程指南针 作者简介&#xff1a;Java领域优质创作者、CSDN博客专家 、CSDN内容合伙人、掘金特邀作者、阿里云博客专家、51CTO特邀作者、多年架构师设计经验、腾讯课堂常驻讲师 主要内容&#xff1a;Java项目、Python项目、前端项目、人工智能与大数据、简…