- <!DOCTYPE html>
- <html>
- <head>
- <title>Page Title</title>
- <style>
- #inner {
- display: table;
- margin: 0 auto;
- border:solid 1px green;
- }
- </style>
- </head>
- <body>
- <h1>This is a Heading</h1>
- <p>This is a paragraph.</p>
- <div style="border:solid 1px red">
- <div id="inner">
- <select><option>test</option></select>
- <select><option>test</option></select>
- <select><option>test</option></select>
- </div>
- </div>
- </body>
- </html>