網頁

2018年5月12日 星期六

HTML CSS center a auto width DIV

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Page Title</title>
  5. <style>
  6.   #inner {
  7.     display: table;
  8.     margin: 0 auto;
  9.     border:solid 1px green;
  10.   }
  11. </style>
  12. </head>
  13. <body>
  14. <h1>This is a Heading</h1>
  15. <p>This is a paragraph.</p>
  16. <div style="border:solid 1px red">
  17.   <div id="inner">
  18.     <select><option>test</option></select>
  19.     <select><option>test</option></select>
  20.     <select><option>test</option></select>
  21.   </div>
  22. </div>
  23. </body>
  24. </html>