首頁  >  文章  >  web前端  >  清除浮動和溢出

清除浮動和溢出

Susan Sarandon
Susan Sarandon原創
2024-11-06 15:58:02312瀏覽

Clear floating & Overflow

您可以在倉庫 Github 上找到本文中的所有程式碼。

您可以在這裡查看視覺效果:

  • 清除浮動 - CodeSandbox
  • 溢位 - CodeSandbox

清晰浮動

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Clear Float</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <div>





<pre class="brush:php;toolbar:false">.box {
  float: left;
  width: 100px;
  height: 100px;
  margin: 10px;
  background-color: lightgreen;
}

.container {
  border: 2px solid black;
  padding: 10px;
}

.clearfix::after {
  content: " ";
  display: block;
  height: 0; /* optional */
  visibility: hidden; /* optional */
  clear: both;
}

溢出

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Overflow</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <p>





<pre class="brush:php;toolbar:false">.one-line-overflow {
  width: 40px;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.multiple-lines-overflow {
  width: 40px;
  height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

以上是清除浮動和溢出的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn