Desbordamiento

Ejemplos de código

13
0

css de desbordamiento

/* To solver overflow issue in IE,
always use properties separately,
do not use short hand */

div {
  overflow-x: hidden;
  overflow-y: auto;
}
7
0

css sin desbordamiento

div.ex1 {
  overflow: scroll;
}

div.ex2 {
  overflow: hidden;
}

div.ex3 {
  overflow: auto;
}

div.ex4 {
  overflow: visible;
}
6
0

div contenido desplazable

div{
	overflow : scroll;
}
1
0

desbordamiento-x significado oculto en css

The overflow-x property specifies whether to clip the content, 
add a scroll bar, or display overflow content of a block-level element,
when it overflows at the left and right edges.
1
0

desbordamiento oculto

overflow: hidden;
0
0

desbordamiento de CSS

.my-div{
  overflow: hidden;
}
.my-div-1{
  overflow-x: hidden;/* Overflow from the div horizanlty will be hidden*/
  overflow-y: hidden;/* Overflow from the div vertically will be hidden*/
}
.scroll-div{
  height: 150px
  overflow: scroll;
  /* Add scrollbar to the div when its height exceded 150px*/
  /* Can be used horizanlty or vertically according to your layout*/
}

En otros idiomas

Esta página está en otros idiomas

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................