inline-block-with-css-background-ref.html 400 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <style type="text/css">
  3. body {
  4. margin: 0;
  5. }
  6. .box {
  7. width: 200px;
  8. }
  9. .box span {
  10. background: rgb(138, 100, 229);
  11. border: 3px solid orange;
  12. font-size: 16px;
  13. color: rgb(255, 255, 255);
  14. padding: 5px 13px;
  15. display: block;
  16. width: fit-content;
  17. }
  18. </style>
  19. <div class="box"><span>Text</span></div>