html文本大小写转换,CSS文字转换大写
CSS无法做到这一点,您可以为此使用PHP或Javascript。PHP示例:$text = "ALL CAPS";$text = ucwords(strtolower($text)); // All CapsjQuery示例(现在是插件!):// Uppercase every first letter of a wordjQuery.fn.ucwords = function() {retur...