Similar documents
第6回 CSS入門(つづき)

IOC IPC RHB JOC JPC IOC IOC IOC 01

nabebon-v97.indd

07_経営論集2010 小松先生.indd

HTML5 CSS

CSS


keep-together.within-*="always" による fo:table-row のオーバーフローを回避

WebRelease ver.2.70 新機能のご紹介

ウェブデザイン技能検定学科試験 2 級 1. 各設問において 正しいものは 1 を 間違っているものは 2 を 該当設問の解答欄に記せ 第 1 問 文字実体参照の は 改行しない半角スペースを表示する 第 2 問 HTML 5.2 では コメントの中に連続したハイフンを入れることができる 第 3 問

PowerPoint Presentation

HTML5&CSS3 レッスンブック

橡点検記録(集約).PDF



Taro13-第6章(まとめ).PDF

経営論集2011_07_小松先生.indd


\begin{practicebox}{ title }[ options ] \end{practicebox} box options options \begin{practicebox}{title of an exercise} \end{practicebox} \begin{ascol

pdf

m_sotsuron

~/WWW-local/compIID (WWW IID ) $ mkdir WWW-local $ cd WWW-local $ mkdir compiid 3. Emacs index.html n (a) $ cd ~/WWW/compIID

1 48

01.eps


_勉強会_丸山さつき_v3

untitled



FR

about かみのごうや たいち 大阪府出身 東京都在中 28歳 うお座 O型 ゾウと写真が好き 2xup.org を管理

CSSNiteLP51-s7-kubo.key

Microsoft PowerPoint - uniCMS操作マニュアル.ppt

ch31.dvi

2

* この 確認問題解答 / 演習問題解答 は, 書籍 HTML 演習 HTML5 版 ( 発行 : 株式会社 SCC) の ダウンロード用 [ 別冊 ] として, 当該書籍の読者に限定して提供しています - 2 -

【お試し版】Web制作者のためのCSS設計の教科書(非売品)

.....

AppleWorks 6 スタートアップマニュアル



(1)

JavaScript の使い方


SVG資料第6回目(その3) SVGとHTMLの間でデータを交換する

6 2 1

Sushi Web ページの編集 Card 1 of 10 3 パソコンの画面上で ブラウザとテキストエディタを横に並べます ブラウザ テキストエディタ 4 5 テキストエディタで 自分の自己紹介になるように変更します 変更したらテキストを保存します ( ファイル > 保存 ) 保存したら F5 を

ID010-2

2

Microsoft PowerPoint - CSSガイドライン_ ppt [互換モード]

Web 設計入門


インターネットマガジン2004年3月号―INTERNET magazine No.110

ホームページ制作 基礎編 (HTML5 CSS3 コーディング )

サンプル CSS OutlineAnimation.html の説明 HTML の記述 (OutlineAnimation.html) id 属性 stage の div 要素を作り その中に div 要素でボックスを記述します id 属性 div1 の div 要素を記述し 中にテキストで Out

Transcription:

2 1 2 3 3 1

@media screen and (max-width: 48em) { #container { width: 100%; display: -webkit-box; display: -moz-box; display: box; } #nav { -webkit-box-ordinal-group: 3; box-ordinal-group: 3; } #main { -webkit-box-ordinal-group: 1; box-ordinal-group: 1; } #sub{ -webkit-box-ordinal-group: 2; box-ordinal-group: 2; } 3 1 2

1 2 2 + 1

1 2 2 + 1

<ul class="banner"> <li><img src="xxx"></li> <li><img src="xxx"></li> </ul> <ul class="banner"> <li><img src="xxx"></li> <li><img src="xxx"></li> </ul> <div id="sub" > <div class="region" ></div> </div> @media screen and (max-width: 48em) { ul.banner { -webkit-flow-into: banners; flow-into: banners; }.region { -webkit-flow-from: banners; flow-from: banners; }

<div class="page"> <div class="region" ></div> <div class="region" ></div> <div class="region" ></div> </div> <article> <p>lorem ipsum dolor sit amet, consectetur... est laborum.</p> </article> article { -webkit-flow-into: article; flow-into: article; }.region { float: left; border: 1px solid black; -webkit-flow-from: article; flow-from: article; }

<article> <h1>lorem ipsum dolor...</h1> <p>consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,... occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p> </article> article { -webkit-column-count: 3; column-count: 3; } article h1 { column-span: all; }

<section> <header> Title </header> <nav> menu </nav> <article> Content </article> <aside> Notes </aside> <footer> Footer </footer> </section> section { display: grid; grid-columns: 150px 1fr 200px; grid-rows: 50px 1fr 50px; } section header { grid-column: 2; grid-row: 1; } section nav { grid-column: 1; grid-row: 2; } section article { grid-column: 2; grid-row: 2; } section aside { grid-column: 3; grid-row: 2; } section footer { grid-column: 2; grid-row: 3;

<body> <body> <header> <h1>header</h1> </header> <nav> <ul><li>...</li></ul> </nav> <header> <h1>header</h1> </header> <nav in data-in-base-after="header" data-in-standard-after="header" data-in-tablet-after="header" data-in-mobile-prepend="body"> <ul><li>...</li></ul> </nav> <body> <header> <h1>header</h1> </header> <nav> <ul><li>...</li></ul> </nav>

<script src="skel.min.js"> { prefix: "style", resetcss: true, boxmodel: "border", grid: { gutters: 40 }, breakpoints: { wide: { range: "1300-", containers: 1280, grid: { gutters: 60 } }, narrow: { range: "-1299", containers: "fluid", grid: { gutters: 50 } }, narrow960: { range: "-960" }, narrow740: { range: "-740" }, narrow460: { range: "-640", grid: { collapse: true } } } } </script>