Advertisement
OldManRiver

Inline Buttons

Jun 18th, 2014
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php
  2.  
  3. ?>
  4.  
  5. <html>
  6.  
  7. <head>
  8. <style type="text/css">
  9. #outer-il {
  10. width:100%;
  11. height:70px;
  12. position:absolute;
  13. vertical-align:top;
  14. }
  15. .outer {
  16. display:inline-block;
  17. width:80%;
  18. vertical-align:top;
  19. }
  20. .inner {
  21. }
  22. </style>
  23. </head>
  24.  
  25. <body>
  26. <hr>
  27. <div class="outer-il">
  28. <h2>My Title Line</h2>
  29. <div class="outer">
  30. <div class="inner button firstbutton" >My 1st Button</div>
  31. <div class="inner" >My 2nd Button</div>
  32. <div class="inner" >My 3rd Button</div>
  33. </div>
  34. </div>
  35. <hr>
  36. </body>
  37.  
  38. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement