https://codepen.io/rachelandrew/pen/aqbdOy
Feature Queries
Test for a CSS feature, and apply the CSS if it exists in that browser.
header h1 { text-align: center; display: grid; grid-template-columns: 1fr auto 1fr; grid-gap: 20px; } @supports (display: grid) { header h1:before, header h1:after { content: ""; align-self: center; border-top: 1px solid rgba(37,46,63,.5); } }