Web サイトのメイン メニューで「銅版ゴシック」書体を使用しています。Copperplate Gothic はすべて大文字なので、各単語の最初の文字を大文字にする場合があります。CSS を使用して、単語の最初の文字に font-face 'Copperplate Gothic' を割り当てるにはどうすればよいですか?
質問する
2322 次
4 に答える
1
Copperplate Gothic フォントはデフォルトで大文字であり、フォントの小文字バージョンは取得されません。「真の小文字は設計されていませんが、Copperplate Gothic は通常、小さな活字で設定されるすべて大文字のテキストに最適です」参照: http://www.microsoft.com/typography/fonts/family.aspx?FID=40
于 2012-06-22T12:02:46.080 に答える
0
text-transform:capitalize;
cssを追加できます
于 2012-06-22T10:06:50.500 に答える
0
text-transformプロパティを使用して、目的の結果を簡単に取得できます。
CSS
p.capitalize {text-transform:capitalize;}
HTML
<p class="capitalize">This is some text.This is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is some textThis is</p>
デモをご覧ください:- http://jsfiddle.net/dkxUX/18/
于 2012-06-22T10:08:20.507 に答える
0
ねえ、これを使った
{
text-transform: capitalize !important;
}
于 2012-06-22T10:08:50.600 に答える