>  기사  >  웹 프론트엔드  >  플로팅 및 오버플로 지우기

플로팅 및 오버플로 지우기

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으로 문의하세요.