Non-Form Fieldset Look | CSS-Tricks

PHOTO EMBED

Mon Jun 22 2020 12:27:26 GMT+0000 (Coordinated Universal Time)

Saved by @Amna #css

.fieldset {
  position: relative;
  border: 1px solid #ddd;
  padding: 10px;
}

.fieldset h1 {
  position: absolute;
  top: 0;
  font-size: 18px;
  line-height: 1;
  margin: -9px 0 0; /* half of font-size */
  background: #fff;
  padding: 0 3px;
}
content_copyCOPY

https://css-tricks.com/snippets/css/non-form-fieldset-look/