CSS3实现的将英文单词首字母设置为大写:
本章节分享一段代码实例,它实现了将英文单词的首字母设置为大写的功能。
使用js实现此功能可以参阅js实现的将单词数字母变换为大写代码实例一章节。
代码实例如下:
<!DOCTYPE html><html><head><meta charset="utf-8"><meta name="author" content="http://www.softwhy.com/" /><title>蚂蚁部落</title><style type="text/css"> p.uppercase{ text-transform:uppercase} </style></head><body><p class="uppercase">softwhy.com is the url</p></body></html>
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=17679
更多内容可以参阅:http://www.softwhy.com/divcss/