ie6 の最初の文字の疑似クラスのスタイルサポートについて
HTML コードは次のとおりです:
<p class="tit_f"> HHONORY CERTIFICATE<br /> <span>荣誉证书</span> </p>
.tit_f:first-letter {font-size:30px;float:left;padding-top:10px;}
ところで、皆さん日曜日は休みですか?
FirefoxとChromeの挙動が違うから意味がない
FirefoxとChromeの挙動が違うから意味がない
一般的な考え方は次のとおりです。違いがある場合は、値を調整します:
<!doctype html><html><head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin:0; padding:0;} .tit_f{} .tit_f i{ position:relative;top:0;font-size:42px;float:left;font-style:normal;} .tit_f span{font-size:14px;} </style></head><body><p class="tit_f"> <i>H</i>HONORY CERTIFICATE<br /> <span>荣誉证书</span></p></body></html>
一般的な考え方は次のとおりです。違いがある場合は、値を調整します:
<!doctype html><html><head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin:0; padding:0;} .tit_f{} .tit_f i{ position:relative;top:0;font-size:42px;float:left;font-style:normal;} .tit_f span{font-size:14px;} </style></head><body><p class="tit_f"> <i>H</i>HONORY CERTIFICATE<br /> <span>荣誉证书</span></p></body></html>