Tutorial CSS OVERFLOW
buayaberdiri.blogspot.com - CSS OVERFLOW adalah kode css yang digunakan untuk membuat element yang dapat menyesuaikan dengan konten,ketika konten itu melebihi panjang atau lebar elemen tersebut maka akan muncul tampilan scroll.
Baca Juga Artikel : Cara Menambah Jumlah Sheet di Excel atau Libre Office Spreedsheet
Baca Juga Artikel : Cara Menambah Jumlah Sheet di Excel atau Libre Office Spreedsheet
Konten ini bisa seperti tulisan,gambar dan video.Ketika konten yang melebihi elemen tidak diberi sintaks overflow biasanya konten tersebut akan memotong element yang sudah kita buat.ini adalah contoh ketika elemen tidak diberi sintaks overflow ketika konten melebihi elemen :
Baca juga artikel tentang : Cara mengatur lebar elemen tag div/margin/span/button dengan CSS
Baca juga artikel tentang : Garis lengkung pada sisi dengan border-radius CSS
Pada gambar diatas terlihat sekali ketika konten melebihi elemen class yang sudah kita buat tanpa menggunakan sintaks overflow.
ini contoh sintaksnya :
Baca juga artikel tentang : Cara mengatur lebar elemen tag div/margin/span/button dengan CSS
Baca juga artikel tentang : Garis lengkung pada sisi dengan border-radius CSS
Pada gambar diatas terlihat sekali ketika konten melebihi elemen class yang sudah kita buat tanpa menggunakan sintaks overflow.
ini contoh sintaksnya :
<!DOCTYPE html>
<html>
<head>
<title>https://buayaberdiri.blogspot.com/</title>
<style>
.a1{
border:5px outset red;
padding:5px;
width:300px;
height:50px;
}
</style>
</head>
<body>
<div class="a1">
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
</div>
</body>
</html>
Untuk sintaks overflow pada CSS,overflow memiliki beberapa value yang wajib kamu ketahui dan memiliki fungsi masing-masing pada value tersebut.Berikut ini adalah macam-macam value dari sintaks overflows CSS
- Visible
- Hidden
- Scroll
- Auto
Overflow Visible CSS
Untuk penulisan sintaks overflow seperti ini :
overflow:visible;
Ini contoh sintaksnya :
<!DOCTYPE html>
<html>
<head>
<title>https://buayaberdiri.blogspot.com/</title>
<style>
.a1{
border:5px outset red;
padding:5px;
width:300px;
height:50px;
overflow: visible;
background-color: yellow;
}
</style>
</head>
<body>
<div class="a1">
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
</div>
</body>
</html>
** Ini adalah contoh value hidden:
overflow:hidden;
Ini adalah contoh gambarnya :
Ini adalah contoh kodingnya :
<!DOCTYPE html>
<html>
<head>
<title>https://buayaberdiri.blogspot.com/</title>
<style>
.a1{
border:5px outset red;
padding:5px;
width:300px;
height:50px;
overflow: hidden;
background-color: yellow;
}
</style>
</head>
<body>
<div class="a1">
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
</div>
</body>
</html>
Baca juga artikel tentang : Tutorial CSS Margin - mengatur margin dengan CSS
** Ini adalah contoh value scroll:
overflow:scroll;
Ini adalah contoh gambarnya :
Berikut ini adalah contoh overflow scroll pada CSS:
<!DOCTYPE html>
<html>
<head>
<title>https://buayaberdiri.blogspot.com/</title>
<style>
.a1{
border:5px outset red;
padding:5px;
width:300px;
height:50px;
overflow: scroll;
background-color: yellow;
}
</style>
</head>
<body>
<div class="a1">
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
</div>
</body>
</html>
Baca juga artikel tentang : Sintaks CSS Background property : background-image,background-repeat,background-color
** Ini adalah contoh value auto:
Ini adalah contoh gambarnya :
Ini adalah contoh kodingnya :
** Ini adalah contoh value auto:
overflow:auto;
Ini adalah contoh gambarnya :
Ini adalah contoh kodingnya :
<!DOCTYPE html>
<html>
<head>
<title>https://buayaberdiri.blogspot.com/</title>
<style>
.a1{
border:5px outset red;
padding:5px;
width:300px;
height:50px;
overflow: auto;
background-color: yellow;
}
</style>
</head>
<body>
<div class="a1">
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
https://buayaberdiri.blogspot.com/</br>https://buayaberdiri.blogspot.com/</br>
</div>
</body>
</html>