When fine-grained control of webpage text, you need to apply CSS attribute settings in multiple aspects, such as line-height in the vertical direction, word-spacing and letter-spacing in the horizontal direction. Word-spacing refers to the word interval, and letter-spacing refers to the letter interval. The two are often confused during the setting and cannot get the desired setting effect.
Word-spacing attributes:
Retrieves or sets the number of spaces inserted between words in an object. Length value composed of floating point numbers and unit identifiers, which can be negative values.
The code is as follows: |
Copy code |
<! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <Html xmlns = "http://www.w3.org/1999/xhtml"> <Head> <Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312"/> <Title> do not confuse word-spacing with letter-spacing-www.111cn.net </title> </Head> <Body> <P> <a href = "http://www.111cn.net" target = "_ blank"> CSS Web Design </a> I love CSS-</p> </Body> </Html> |
Set word-spacing to 15px
<!
The code is as follows: |
Copy code |
DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Transitional // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <Html xmlns = "http://www.w3.org/1999/xhtml"> <Head> <Meta http-equiv = "Content-Type" content = "text/html; charset = gb2312"/> <Title> do not confuse word-spacing with letter-spacing-</title> <Style type = "text/css"> P {word-spacing: 15px ;} </Style> </Head> <Body> <P> <a href = "http://www.111cn.net/" target = "_ blank"> CSS Web Design </a> I love CSS-</p> </Body> </Html> |