white-space - CSS: Cascading Style Sheets | MDN
The white-space CSS property sets how white space inside an element is handled.
Putulin ang isang line ng text kapag nag-overflow na ito at lagyan ng ellipsis sa dulo.
Gamit ang ilang lines of code sa CSS, puwedeng putulin ang isang paragraph para maging isang line lang at lagyan ng ellipsis sa dulo nito.
Halimbawa, sa code samples na ito:
<p class="one-line">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Eius qui vero assumenda facilis maiores laudantium, quis dolor quia mollitia itaque? Error totam hic repudiandae ratione, adipisci quam dolore accusantium architecto?</p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Eius qui vero assumenda facilis maiores laudantium, quis dolor quia mollitia itaque? Error totam hic repudiandae ratione, adipisci quam dolore accusantium architecto?
Google Chrome: Supported
Microsoft Edge: Supported
Firefox: Supported
Safari: Supported
Ini-indicate ng white-space
property kung paano dapat i-handle ng browser ang
white spaces (e.g. space, tab, <br>
, new line) sa isang element.
Kapag naka-set ito to nowrap
, hindi nito hahayaang mag-wrap ang text papunta
sa new line kapag wala nang available space.
.one-line {
white-space: nowrap;
}
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Eius qui vero assumenda facilis maiores laudantium, quis dolor quia mollitia itaque? Error totam hic repudiandae ratione, adipisci quam dolore accusantium architecto?
Google Chrome: Supported
Microsoft Edge: Supported
Firefox: Supported
Safari: Supported
Ini-indicate ng overflow
kung ano ang mangyayari kapag lumampas ang content
sa container nito. Kapag hidden
ang value, itatago ng browser ang lahat ng
content na nag-overflow sa element.
.one-line {
white-space: nowrap;
overflow: hidden
}
Google Chrome: Supported
Microsoft Edge: Supported
Firefox: Supported
Safari: Supported
Ini-indicate ng text-overflow
property kung paano ipapakita na may
nag-overflow na content. Kapag ellipsis
ang value nito, maglalagay ang
browser ng ellipsis (“…”).
.one-line {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
The white-space CSS property sets how white space inside an element is handled.
The overflow CSS shorthand property sets the desired behavior when content does not fit in the element's padding box (overflows) in the horizontal and/or vertical direction.
The text-overflow CSS property sets how hidden overflow content is signaled to users. It can be clipped, display an ellipsis ('…'), or display a custom string.