content html css html5 nowrap

html - content - CSS nowrap para que no sean elementos de texto?



word break css (3)

Puedes declarar posiciones estáticas para los otros contenidos usando

position:absolute;

¿Hay alguna manera de evitar que el contenido de un div ajuste al contenido cuando el contenido no es solo texto, por ejemplo, varios botones?


Puedes establecer estas dos propiedades en CSS:

white-space:nowrap; y max-width:something;


white-space:nowrap; debe hacer el truco

#foo { white-space:nowrap; width: 100px; }

<div id="foo"> <input type="button" value="hello"/> <input type="button" value="hello"/> <input type="button" value="hello"/> <input type="button" value="hello"/> <input type="button" value="hello"/> <input type="button" value="hello"/> <input type="button" value="hello"/> </div>

Demo