Showing posts with label overflow visible. Show all posts
Showing posts with label overflow visible. Show all posts
CSS'de overflow özelliği bir alana sığmayacak kadar büyük olan içeriğe ne olacağını ayarlamamızı sağlar. Overflow aşağıdaki değerleri alabilir;
Visible
Varsayılan değerdir. Taşma kırpılmaz. İçerik öğenin dışına taşmış bir şekilde görüntülenir.div {
overflow: visible;
}
You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
Hidden
Taşma kırpılır ve içeriğin geri kalanı görünmez olur.
div {
overflow: hidden;
}
You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
Scroll
Taşma kırpılır ve içeriğin geri kalanını görmek için bir kaydırma çubuğu eklenir.
div {
overflow: scroll;
}
You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.
Auto
Eğer bir taşma olursa bu taşma kırpılır ve scroll eklenir. Bir taşma durumu olmazsa scroll eklenmez.
div {
overflow: auto;
}
You can use the overflow property when you want to have better control of the layout. The overflow property specifies what happens if content overflows an element's box.