「HTML/CSS」の編集履歴(バックアップ)一覧はこちら

HTML/CSS」の最新版変更点

追加された行はこの色になります。

削除された行はこの色になります。

 *関連トピックス
 -[[【CSS】ブラウザのスタイルをリセットするスタイルシート集 | コリス>http://coliss.com/articles/build-websites/operation/css/1799.html]]
 -[[CSSNite in Nagoya 2007 極力ハックしない CSS by 山田あかね(purprin)>http://escafrace.heteml.jp/presentation/20070310/video/]]
 
 
 *役立つサイト
 -[[CSSレイアウト実践講座>http://css.uka-p.com/]]
 -[[とほほのスタイルシート入門>http://www.tohoho-web.com/css/index.htm]]
 -[[Web標準XHTML+CSSデザイン クリエイターが身につけておくべき新・100の法則。 公式サポートサイト>http://web-100.jp/]]
 サンプルダウンロードのページが参考になる。
 -[[CSS HappyLife>http://css-happylife.com/]]
 -[[CSS-EBLOG>http://css-eblog.com/]]
 -[[CSSめっちゃ不器用やねん>http://cssbuki.blog46.fc2.com/]]
 -[[リンク名>URL]]
 
 *memo
 リセット CSS(2009.02.07の時点+コメントで説明つき)
 -[[Yahoo! UI Library>http://developer.yahoo.com/yui/reset/]]
 //リセット CSS
  /* 各要素のmargin.paddingの正規化 */
  body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td {    
     margin:0;   
     padding:0;   
  } 
  /* tabel要素のセルのボーダーとボーダーの間隔を0に */
  table {  
     border-collapse:collapse;   
     border-spacing:0;   
  } 
  /* fieldsetやimg要素のボーダーを削除 */
  fieldset,img {    
     border:0;   
  } 
  /* font-styleやfont-weightプロパティの正規化 */
  address,caption,cite,code,dfn,em,strong,th,var {  
     font-style:normal;   
     font-weight:normal;   
  } 
  /* ol、ul要素のlist-styleを削除 */
  ol,ul {  
     list-style:none;   
  } 
  /* captionやth要素を左揃えに */
  caption,th {  
     text-align:left;   
  } 
  /* 見出し要素のフォントサイズ、太さの正規化 */
  h1,h2,h3,h4,h5,h6 {  
     font-size:100%;   
     font-weight:normal;   
  } 
  /* q要素の引用マークを削除 */
  q:before,q:after {  
     content:'';   
  } 
  /* 略語のボーダーを削除 */
  abbr,acronym { border:0;   
  }  
 
 タグの順番
  /* mozilla.org Base Styles
  * maintained by fantasai
  * (classes defined in the Markup Guide - http://mozilla.org/contribute/writing/markup )
  */
  /* Suggested order:
  * display
  * list-style
  * position
  * float
  * clear
  * width
  * height
  * margin
  * padding
  * border
  * background
  * color
  * font
  * text-decoration
  * text-align
  * vertical-align
  * white-space
  * other text
  * content
  *
  */
 
 ----
 
 #comment()

更新履歴