Advertisement
pusatdata

CSS: Background Warna untuk Paragrap atau Judul

Dec 29th, 2014
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <head>
  2. <style>
  3.  
  4. .paragraph-color{
  5. background: #0493e5;
  6. filter:alpha(opacity=90);
  7. opacity:0.9;
  8. color: #e9e9e9;
  9. font-family: "Century Gothic", arial, sans-serif;
  10. border-radius: 8px;
  11. font-size: 12px;
  12. font-weight: bold;
  13. padding: 5px 5px 5px 10px;
  14. margin:0 auto;
  15. }
  16. </style>
  17. </head>
  18.  
  19.  
  20. <div class="paragraph-color">YOUR TEXT</div>
  21.  
  22. atau
  23.  
  24. <span class="paragraph-color">YOUR TEXT</span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement