CSS3 - tekst
CSS3 zawierał kilka dodatkowych funkcji, które zostaną dodane później.
- text-overflow
- word-wrap
- word-break
Istnieją następujące najczęściej używane właściwości w CSS3 -
Sr.No. | Wartość i opis |
---|---|
1 | text-align-last Służy do wyrównania ostatniego wiersza tekstu |
2 | text-emphasis Służy do podkreślania tekstu i koloru |
3 | text-overflow służy do określania, w jaki sposób przepełniona treść, która nie jest wyświetlana, jest sygnalizowana użytkownikom |
4 | word-break Używane do łamania linii na podstawie słowa |
5 | word-wrap Służy do przerywania linii i zawijania do następnej linii |
Przepełnienie tekstu
Właściwość text-overflow określa, jak przepełniona treść, która nie jest wyświetlana, jest sygnalizowana użytkownikom. przykładowy przykład przepełnienia tekstu przedstawiono w następujący sposób -
<html>
<head>
<style>
p.text1 {
white-space: nowrap;
width: 500px;
border: 1px solid #000000;
overflow: hidden;
text-overflow: clip;
}
p.text2 {
white-space: nowrap;
width: 500px;
border: 1px solid #000000;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<b>Original Text:</b>
<p>
Tutorials Point originated from the idea that there exists a class of
readers who respond better to online content and prefer to learn new
skills at their own pace from the comforts of their drawing rooms.
</p>
<b>Text overflow:clip:</b>
<p class = "text1">
Tutorials Point originated from the idea that there exists
a class of readers who respond better to online content and prefer
to learn new skills at their own pace from the comforts of their
drawing rooms.
</p>
<b>Text overflow:ellipsis</b>
<p class = "text2">
Tutorials Point originated from the idea that there exists
a class of readers who respond better to online content and
prefer to learn new skills at their own pace from the comforts
of their drawing rooms.
</p>
</body>
</html>
To da następujący wynik -
Łamanie słów CSS3
Służy do dzielenia wiersza, poniższy kod przedstawia przykładowy kod dzielenia słów.
<html>
<head>
<style>
p.text1 {
width: 140px;
border: 1px solid #000000;
word-break: keep-all;
}
p.text2 {
width: 140px;
border: 1px solid #000000;
word-break: break-all;
}
</style>
</head>
<body>
<b>line break at hyphens:</b>
<p class = "text1">
Tutorials Point originated from the idea that there exists a
class of readers who respond better to online content and prefer
to learn new skills at their own pace from the comforts of
their drawing rooms.
</p>
<b>line break at any character</b>
<p class = "text2">
Tutorials Point originated from the idea that there exists a
class of readers who respond better to online content and
prefer to learn new skills at their own pace from the comforts
of their drawing rooms.
</p>
</body>
</html>
To da następujący wynik -
Zawijanie słów CSS
Zawijanie słów służy do dzielenia wiersza i zawijania do następnego wiersza. Poniższy kod będzie miał przykładową składnię -
p {
word-wrap: break-word;
}