Skip to content

Instantly share code, notes, and snippets.

@aloerina01
Last active May 4, 2016 13:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aloerina01/f2f652732d216e822233d17902acc9ba to your computer and use it in GitHub Desktop.
Save aloerina01/f2f652732d216e822233d17902acc9ba to your computer and use it in GitHub Desktop.
CSSの設計 汎用パーツにはシンプルなclass命名を。
.button {
/* ボタンの共通デザインを定義する 以下サンプル */
margin: 8px;
padding: 8px;
border: 1px solid #ddd;
background-color: #f1f1f1;
color: #333;
}
<button class="button" value="送信"></button>
<button class="button" value="キャンセル"></button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment