2013-05-12から1日間の記事一覧

HTML5+CSS3【マルチデバイス】―Twitter Bootstrap07

Forms Default stylesソースコード【 HTML 】 <html lang="ja"> <head> <meta charset="UTF-8"> <title>Twitter Bootstrap の導入</title> <link href="css/bootstrap.min.css" rel="stylesheet"> </head> <body> <form> <legend>Legend</legend> <label>Label name</label> </form></body></html>

HTML5+CSS3【マルチデバイス】―Twitter Bootstrap08

Forms Default stylesソースコード【 HTML 】 <html lang="ja"> <head> <meta charset="UTF-8"> <title>Twitter Bootstrap の導入</title> <link href="css/bootstrap.min.css" rel="stylesheet"> </head> <body> <textarea rows="3"></textarea> </body></html>

HTML5+CSS3【マルチデバイス】―Twitter Bootstrap09

Bootstrap Buttons Buttons Default buttons ソースコード【 HTML 】 <html lang="ja"> <head> <meta charset="UTF-8"> <title>Twitter Bootstrap の導入</title> <link href="css/bootstrap.min.css" rel="stylesheet"> </head> <body> <button class="btn">Buttons</button> <button class="btn btn-primary">Button…</button></body></html>

マルチデバイス―可変レイアウト

画面サイズごとのデザイン 1つの内容でマルチデバイス対応の見た目を作る [CSS]CSS3のMedia Queries(メディアクエリ)の使い方と実装例 「角丸やシャドウだけではないCSS3の大切な三つのテクニック」の一つ、Media Queriesの使い方と実装例の紹介 【CSS】C…