Die Anleitung zu CSS Overflow
1. CSS Overflow
Wenn die Inhalt eines Element größer als den durch ein Element angebotenen ist, kann die Inhalt überlaufen.CSS overflow ermöglicht Sie, den Verhalten des Element in diesen Situation einzustellen.
Achtung: CSS overflow funktioniert mit den Block-Element, das die spezielle Höhe feststellt.
Die möglichen Werten von CSS overflow:
- visible
- hidden
- scroll
- auto
2. CSS {overflow: visible}
CSS {overflow: visible}: (Standardmäßig). Wenn die Inhalt des Element größer als den durch Element angebotenen Raum ist, wird es überlaufen. Das ist das Standardverhalten.
overflow-visible-example.html
<!DOCTYPE html>
<html>
<head>
<title>CSS overflow</title>
<meta charset="UTF-8"/>
<style>
div {
background-color: #d6eaf8;
padding: 5px;
margin-top: 10px;
}
</style>
</head>
<body>
<h1>CSS {overflow:visible} (Default)</h1>
<hr/>
<div style="width: 200px; height: 100px; overflow: visible">
Michaelmas term lately over, and the Lord Chancellor
sitting in Lincoln's Inn Hall. Implacable November weather.
As much mud in the streets as if the waters
had but newly retired from the face of the earth.
</div>
</body>
</html>
3. CSS {overflow: hidden}
CSS {overflow: hidden}: Die Inhalt, die den Raum des Element überläuft, wird versteckt werden.
overflow-hidden-example.html
<!DOCTYPE html>
<html>
<head>
<title>CSS overflow</title>
<meta charset="UTF-8"/>
<style>
div {
background-color: #d6eaf8;
padding: 5px;
margin-top: 10px;
}
</style>
</head>
<body>
<h1>CSS {overflow:hidden}</h1>
<hr/>
<div style="width: 200px; height: 100px; overflow: hidden">
Michaelmas term lately over, and the Lord Chancellor
sitting in Lincoln's Inn Hall. Implacable November weather.
As much mud in the streets as if the waters
had but newly retired from the face of the earth.
</div>
</body>
</html>
4. CSS {overflow: scroll}
CSS {overflow: scroll}: Der Browser erstellt eine Bildlaufleiste für Element. Der Benutzer kann die Bildlaufleiste benutzen um den verbleibenden Inhalt zu sehen.
Achtung: Für die meisten Browser und das Betriebssystem tritt die Bildlaufleiste des Element immer auf , auch wenn der Inhalt des Element kleiner als den durch Element angebotenen Raum. Die Ausnahme passiert bei dem Betriebsystem Mac OSX Lion. Die Bildlaufleiste trifft auf wenn nötig.
overflow-scroll-example.html
<!DOCTYPE html>
<html>
<head>
<title>CSS overflow</title>
<meta charset="UTF-8"/>
<style>
div {
background-color: #d6eaf8;
padding: 5px;
margin-top: 10px;
}
</style>
</head>
<body>
<h1>CSS {overflow:scroll}</h1>
<hr/>
<div style="width: 200px; height: 100px; overflow: scroll">
Michaelmas term lately over, and the Lord Chancellor
sitting in Lincoln's Inn Hall. Implacable November weather.
As much mud in the streets as if the waters
had but newly retired from the face of the earth.
</div>
</body>
</html>
5. CSS {overflow: auto}
CSS {overflow: auto}: Ähnlich wie 'scroll' tritt die Bildlaufleiste nur auf wenn den Inhalt größer als den durch Element angebotenen Raum ist.

overflow-auto-example.html
<!DOCTYPE html>
<html>
<head>
<title>CSS overflow</title>
<meta charset="UTF-8"/>
<style>
div {
background-color: #d6eaf8;
padding: 5px;
margin-top: 10px;
}
</style>
</head>
<body>
<h1>CSS {overflow:auto}</h1>
<hr/>
<div style="height: 105px; overflow: auto">
Michaelmas term lately over, and the Lord Chancellor
sitting in Lincoln's Inn Hall. Implacable November weather.
As much mud in the streets as if the waters
had but newly retired from the face of the earth.
<br/>
Michaelmas term lately over, and the Lord Chancellor
sitting in Lincoln's Inn Hall. Implacable November weather.
As much mud in the streets as if the waters
had but newly retired from the face of the earth.
</div>
</body>
</html>
6. CSS overflow-x, overflow-y
Anstatt von der Benutzung von CSS overflow können Sie CSS overflow-x und CSS overflow-y benutzen. Die möglichen Werte von CSS overflow-x, CSS overflow-y ist so gleich wie CSS overflow
- visible
- hidden
- scroll
- auto
CSS overflow-x
CSS overflow-x wird benutzt um den Verhalten des Element einzustellen wenn sein Inhalt außer Element horizontal überläuft.
CSS overflow-y
CSS overflow-y wird benutzt um das Verhalten des Element einzustellen wenn sein Inhalt außer Element vertikal überfließen
Achtung: Sie können ein Wert-Paar für (overflow-x,overflow-y) festlegen aber der Browser wird diese Wert-Paar wieder rechnen. Denn die Wert-Paar, die Sie festgelegt haben, kann nicht pratisch sein. Z.B (visible, hidden) wird zu (scroll, hidden) wieder gerechnet.
Die folgende Tabelle fasst 2 Säule um. Die erste Säule enthaltet die festgelegten Wert-Paaren. Die zweite Säule enthaltet die Wert-Paaren, die der Browser wieder gerechnet hat.
Specified values | Computed values |
(visible, visible) | (visible, visible) |
(visible, hidden) | (scroll, hidden) |
(visible, scroll) | (scroll, scroll) |
(visible, auto) | (scroll, auto) |
(hidden, visible) | (hidden, scroll) |
(hidden, hidden) | (hidden, hidden) |
(hidden, scroll) | (hidden, scroll) |
(hidden, auto) | (hidden, auto) |
(scroll, visible) | (scroll, scroll) |
(scroll, hidden) | (scroll, hidden) |
(scroll, scroll) | (scroll, scroll) |
(scroll, auto) | (scroll, auto) |
(auto, visible) | (auto, scroll) |
(auto, hidden) | (auto, hidden) |
(auto, scroll) | (auto, scroll) |
(auto, auto) | (auto, auto) |
overflow-x-y-example.js
function changeOverflowX(event) {
value = event.target.value;
var myDiv = document.getElementById("myDiv");
myDiv.style.overflowX = value;
}
function changeOverflowY(event) {
value = event.target.value;
var myDiv = document.getElementById("myDiv");
myDiv.style.overflowY = value;
}
overflow-x-y-example.html
<!DOCTYPE html>
<html>
<head>
<title>CSS overflow</title>
<meta charset="UTF-8"/>
<style>
#myDiv {
background-color: #d6eaf8;
padding: 5px;
margin-top: 15px;
}
</style>
<script src="overflow-x-y-example.js"> </script>
</head>
<body>
<h2>CSS overflow-x, overflow-y</h2>
<hr/>
<div style="display: inline-block; width: 150px;">
<p>Overflow-x:</p>
<input type="radio" name="overflowX" value="visible" onClick="changeOverflowX(event)" checked/> Visible <br/>
<input type="radio" name="overflowX" value="hidden" onClick="changeOverflowX(event)"/> Hidden <br/>
<input type="radio" name="overflowX" value="scroll" onClick="changeOverflowX(event)"/> Scroll <br/>
<input type="radio" name="overflowX" value="auto" onClick="changeOverflowX(event)"/> Auto <br/>
</div>
<div style="display: inline-block; width: 150px;">
<p>Overflow-y:</p>
<input type="radio" name="overflowY" value="visible" onClick="changeOverflowY(event)" checked/> Visible <br/>
<input type="radio" name="overflowY" value="hidden" onClick="changeOverflowY(event)"/> Hidden <br/>
<input type="radio" name="overflowY" value="scroll" onClick="changeOverflowY(event)"/> Scroll <br/>
<input type="radio" name="overflowY" value="auto" onClick="changeOverflowY(event)"/> Auto <br/>
</div>
<div id="infoDiv">
</div>
<div id="myDiv" style="height: 50px; width:200px; overflow-x: visible;">
The value of Pi is <br/>
3.1415926535897932384626433832795029.
The value of e is <br/>
2.718281828459045235360287471352662
</div>
</body>
</html>
Anleitungen CSS
- Einheiten in CSS
- Die Anleitung zu Grundlegende CSS Selectors
- Die Anleitung zu CSS Attribute Selector
- Die Anleitung zu CSS Combinator Selectors
- Die Anleitung zu CSS Backgrounds
- Die Anleitung zu CSS Opacity
- Die Anleitung zu CSS Padding
- Die Anleitung zu CSS Margins
- Die Anleitung zu CSS Borders
- Die Anleitung zu CSS Outline
- Die Anleitung zu CSS box-sizing
- Die Anleitung zu CSS max-width und min-width
- Die Schlüsselwörter min-content, max-content, fit-content, stretch in CSS
- Die Anleitung zu CSS Links
- Die Anleitung zu CSS Fonts
- Grundlegendes zu Generic Font Family Names in CSS
- Die Anleitung zu CSS @font-face
- Die Anleitung zu CSS Align
- Die Anleitung zu CSS Cursors
- Die Anleitung zu CSS Overflow
- Die Anleitung zu CSS Lists
- Die Anleitung zu CSS Tables
- Die Anleitung zu CSS visibility
- Die Anleitung zu CSS Display
- Die Anleitung zu CSS Grid Layout
- Die Anleitung zu CSS Float und Clear
- Die Anleitung zu CSS Position
- Die Anleitung zu CSS line-height
- Die Anleitung zu CSS text-align
- Die Anleitung zu CSS text-decoration
Show More
Vielleicht bist du interessiert
Das sind die Online-Courses außer der Website codestory.de, die wir empfehlen. Sie können umsonst sein oder Discount haben.
Webentwicklung Meisterkurs: Lerne HTML, CSS & Java Script
Baue Webseiten mit HTML5 & CSS3: Vom Anfänger zum Profi!
HTML, CSS und JavaScript Grundlagen, Web für Einsteiger
CSS3 Master Series: CSS Animations, Transforms & Transitions
A Complete Guide to Improve HTML & CSS Workflow using Emmet
Web Development Course: HTML5 and CSS3
2D Game Development With HTML5 Canvas, JS - Tic Tac Toe Game
HTML5 + CSS3 + Bootstrap: The Beginner Web Design Course
HTML5 and CSS for Beginner To Expert
HTML5 And CSS3 - Build Modern Responsive Websites
Mastering CSS 3.0 Selectors
HTML5, CSS3 & JavaScript Workshop: Build 7 Creative Projects
Build Responsive Website with HTML5 and CSS3
HTML5 and CSS3 For Beginners - A Complete Understanding
CSS: How to design & style web pages using CSS the right way
Web Visualization with HTML5, CSS3, and JavaScript-Volume 1
Build Responsive Website Using HTML5, CSS3, JS And Bootstrap
Learn By Example: The Foundations of HTML, CSS & Javascript
HTML 5 and CSS 3 - tricks and workarounds
Write quicker HTML5 and CSS 3; productivity hacks with emmet
Mastering CSS3 Colors
Mastering CSS3 Selectors
Build Real World Websites from Scratch using HTML5 and CSS3
HTML CSS Easy steps to create a web template from scratch
Web Visualization with HTML5, CSS3, and JavaScript
HTML CSS JavaScript: Most popular ways to code HTML CSS JS
Ultimate HTML and CSS course for Absolute Beginners 2015
Complete HTML5 and CSS3 Course +1 Start to Finish Project
CSS and CSS3 Advanced
The Complete HTML5 & CSS3 Course Build Professional Websites
HTML5, CSS3 & Bootstrap - How to Create a Responsive Website
Responsive Web Design: HTML5 + CSS3 for Entrepreneurs 2018
Create Android and iOS App using HTML, CSS and JS
Phonegap & Ludei - Build HTML5 CSS & JS Apps
Build an HTML5 and CSS3 Website in 35 Minutes
Master the Basics of HTML5 & CSS3: Beginner Web Development
Learn animation using CSS3, Javascript and HTML5
A Web Development Crash Course in HTML5 and CSS3
HTML and HTML5 Scratch. The Most Complete masterclass in 8h
CSS 3D
Learn Html5 & CSS3 from scratch
Create Beautiful Websites with CSS3
Web Design for Beginners: Real World Coding in HTML & CSS
Build Your First Website in 1 Week with HTML5 and CSS3
Responsive Web Design with HTML5 and CSS3 - Intermediate
Responsive Web Design with HTML5 and CSS3 - Introduction
Building Responsive Websites with HTML 5 & CSS3
HTML5 & CSS3 Site Design
CSS3 MasterClass - Transformations And Animations
Step-by-step HTML and CSS for Absolute Beginners
Show More