The text-autospace property specifies the spacing between ideographic and non-ideographic.
p {
text-autospace: ideograph-alpha;
}
| Property | Value | Explanation |
|---|---|---|
| text-autospace | ideograph-alpha | spacing between ideographic and non-ideographic |
| ideograph-numeric | spacing between ideographic and numeric | |
| ideograph-parenthesis | spacing between ideographic and parenthesis | |
| ideograph-space | extends the width of the space character | |
| none | no extra spacing is created (default) |
ideograph-alpha
Creates extra spacing between ideographic text and non-ideographic text.
ideograph-numeric
Creates extra spacing between ideographic text and numeric characters.
ideograph-parenthesis
Creates extra spacing between ideographic text and normal parenthesis.
ideograph-space
Extends the width of the space character that is adjacent to ideographic.
(This value might not be supported.)
![]()
<html> <head> <title>TAG index</title> <style type="text/css"> p { font-size: 180%; } #example1 { text-autospace: ideograph-alpha; } #example2 { text-autospace: ideograph-numeric; } #example3 { text-autospace: ideograph-parenthesis; } #example4 { text-autospace: ideograph-space; } </style> </head> <body> <p> [JPN]ENGLISH[JPN]ENGLISH<br> <span id="example1">[JPN]ENGLISH[JPN]ENGLISH</span> </p> <p> [JPN]11111[JPN]22222<br> <span id="example2">[JPN]11111[JPN]22222</span> </p> <p> [JPN]([JPN])[JPN]([JPN])<br> <span id="example3">[JPN]([JPN])[JPN]([JPN])</span> </p> <p> [JPN]ENGLISH[JPN]ENGLISH<br> <span id="example4">[JPN]ENGLISH[JPN]ENGLISH</span> </p> </body> </html>
Screen shot in MSIE
