2014年12月3日水曜日

開発環境

Head First HTML and CSS(Elisabeth Robson (著)、 Eric Freeman (著)、O'Reilly Media)のChapter 9(the box model: Getting Intimate with Elements)、Exercise(p.402)を解いてみる。

HTML (BBEdit, Emacs)

<link rel="stylesheet" href="lounge-smartphone.css"
      media="screen and (max-device-width: 640px)" >
<link rel="stylesheet" href="lounge-tablet-portrait.css"
      media="screen and (max-device-width: 1024px) and (orientation: portrait)" >
<link rel="stylesheet" href="lounge-tablet-landscape.css"
      media="screen and (max-device-width: 1024px) and (orientation: landscape)" >
<link rel="stylesheet" href="lounge-pc.css"
      media="screen and (max-device-width: 1280px)" >
<link rel="stylesheet" href="lounge-tv.css"
      media="screen and (max-device-width: 2650px)" >

0 コメント:

コメントを投稿