You’re trying to center the following element
<span class="zombie">Content That should be centered</span>Code language: HTML, XML (xml)With the following CSS:
.zombie {
margin: auto;
width: 200px;
}Code language: CSS (css)But like a zombie barista, it’s not working. Other than changing the way you center the element (e.g. via flexbox or grid) how can you fix this code and center the element?
Play with it on codepen: https://codepen.io/undeadinstitute/pen/dygaZMr?editors=1100