You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
879 B

2 years ago
  1. <html lang="en">
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. #div0 {
  13. width: 250px;
  14. display: flex;
  15. border: 1px solid #dcdcdc;
  16. }
  17. #div0 label {
  18. flex: 1; /* 相当于 flex:1 1 0% */
  19. background-color: #f5f5f5;
  20. text-align: center;
  21. }
  22. #div0 input {
  23. border: none;
  24. /* 点击输入框时,无边框显示 */
  25. outline: none;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div id="div0">
  31. <label>姓名</label>
  32. <input type="text">
  33. <label>go</label>
  34. </div>
  35. </body>
  36. </html>