開発環境
- OS X Yosemite - Apple (OS)
- Safari, Firefox + Firebug, Google Chrome(Webプラウザ、プラグイン)
- BBEdit - Bare Bones Software, Inc. (GUI) , Emacs (CUI) (Text Editor)
- HTML (マークアップ言語)
- Cascading Style Sheets(CSS) (スタイルシート)
Head First HTML and CSS(Elisabeth Robson (著)、 Eric Freeman (著)、O'Reilly Media)のChapter 9(the box model: Getting Intimate with Elements)、Exercise(p.404)を解いてみる。
Exercise(p.404)
HTML (BBEdit, Emacs)
<style>
@media (min-width: 801px) {
#min_max {
color: red;
}
}
@media (max-width: 800) {
#min_max {
color: blue;
}
}
</style>
<p id="min_max">min-width: 481px, max-width:480px</p>
min-width: 481px, max-width:480px
0 コメント:
コメントを投稿