タグマークアップ
Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<pre>タグからフォントを変更することはできますか?たとえば、私はcourierフォントは好きではありませんが、consolasフォントは好きです。これをcssで変更しますか?
<pre>
私は次のことを試しました:
pre { color: white; font: "Consolas"; }
しかし、それはFirefox/IEでは機能しませんでした...
ありがとうございました!
イヴァン
省略形のfontプロパティでは、フォントサイズを指定する必要があります。
font
font-family代わりにプロパティを使用してください。
font-family
font-familyは機能するはずです。試す
.pre { color: #fff; font-family:Consolas; }