123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- .box {
- text-indent: 2em;
- }
- .box div {
- display: inline-block;
- /* text-indent: 0; */
- }
- </style>
- </head>
- <body>
- <input type="text" class="box" value="asdasdasd">
- <button class="box">asdasd</button>
- <textarea class="box">asdasd</textarea>
- <div class="box">
- Found a problem with this page?
- Found a problem with this page?
- Found a problem with this page?
- Found a problem with this page?
- Found a problem with this page?
- <div>
- Found a problem with this page?
- Found a problem with this page?
- </div>
- Found a problem with this page?
- Found a problem with this page?
- </div>
- </body>
- </html>
|