Advertisement
Guest User

Untitled

a guest
Aug 29th, 2010
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.67 KB | None | 0 0
  1. ///////////////////////////
  2. // borders.html contents:
  3. ///////////////////////////
  4.  
  5. <HTML>
  6.     <head>
  7.         <link rel="stylesheet" type="text/css" href="stylesheet.css" />
  8.     </head>
  9.     <body>
  10.         <button type="button" class="style" onClick="window.location='http://stackoverflow.com/'">This is a button</button>
  11.         <div class="style">This is some text in a div</div>
  12.         <textarea ROWS=5 class="style">This is a text area</textarea>
  13.     </body>
  14. </HTML>
  15.  
  16.  
  17. ///////////////////////////
  18. // stylesheet.css contents:
  19. ///////////////////////////
  20.  
  21. .style{
  22.     text-align: center;
  23.     display: block;
  24.     margin-left: auto;
  25.     margin-right: auto;
  26.     margin-bottom: 1px;
  27.     width: 50%;
  28.     border: solid 5px;
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement