勉強したことのメモ

Webエンジニア / プログラマが勉強したことのメモ。

フォームCSS

   2014/07/03  CSS

body {
font-family : 'メイリオ',Meiryo,'MS Pゴシック',sans-serif;
font-size : 13px;
}
table {
min-width:800px;
}
table,th,tr,td {
border-style: solid;
border-width: 1px;
border-collapse: collapse;
padding : 5px;
}
tr:hover{
background-color : #F5F5F5;
}
th {
background-color : #C0C0C0;
}
.br {
white-space: nowrap;
}

 - CSS

  関連記事

CSSのセレクタを一瞬で拾ってくる

↓↓こちらのサイト様 http://css.miugle.info/ 左側のテキ ...

CSSで一つの要素に対して複数の背景色を指定する方法

1つのdiv要素に対して複数の背景色をつけたかった。background-col ...

特定のID / Classを持つタグの親要素に対してCSSを割り当てる方法

特定のID / Classを持つタグの親要素に対してCSSを割り当てたい。また、 ...

CodeIgniter4&Bootstrap&jQueryで簡易版お問い合わせページの作成

CodeIgniter4.4.4&Bootstrap&jQuer ...

jQueryとCSSの連携

$(function(){ $("#change_small").click(f ...