I'm having slight issues centering my div. I'm currently using Chart.js inside of a canvas.
Here is the CSS:
#canvas-container {
text-align: center;
}
canvas {
display: inline-block;
}
and the HTML
<div id="canvas-container" style="align-content: center">
<canvas id="myChart" width="500" height="500"></canvas>
</div>
it's just floating to the left