Guest User

Untitled

a guest
Nov 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. .button {
  2. height:100px; /* ボタンの高さ */
  3. width:200px; /* ボタンの幅 */
  4. color:#fff; /* 文字の色 */
  5. font-size:24px; /* 文字の大きさ*/
  6. font-weight:bold; /* 文字の太さ(normal bold lighter bolder)*/
  7. text-align:center; /* 文字の水平配置(right center left)*/
  8. display:block; /* 要素のまとめ方?とらえ方?(inline block inline-block none)*/
  9. padding:10px;
  10. background-color: blue;
  11. opacity:0.5;
  12. border:1px solid #333;
  13. border-radius: 10px;
  14. }
  15. 一時保存
Add Comment
Please, Sign In to add comment