Bằng cách xác định thuộc tính CSS word-spacing, chúng ta có thể đặt khoảng trắng giữa các từ.
Các ví dụ sau minh họa thuộc tính giãn cách từ trong CSS.
Ví dụ
<!DOCTYPE html> <html> <head> <style> div { margin: 2%; padding: 2%; background-color: mediumorchid; color: ivory; word-spacing: 2.2cm; } div:last-of-type { word-spacing: normal; } </style> </head> <body> <div>I Don't Care! I Love It!</div> <div>I Don't Care! I Love It!</div> </body> </html>
Đầu ra
Điều này sẽ tạo ra kết quả sau -
Ví dụ
<!DOCTYPE html> <html> <head> <style> article { margin: 2%; padding: 2%; background-color: azure; word-spacing: 2.2cm; } article:last-of-type { word-spacing: normal; } </style> </head> <body> <article>tldr; this article doesn;t mean anything</article> <article>0123456789 is not a phone number</article> </body> </html>
Đầu ra
Điều này sẽ tạo ra kết quả sau -