@helloredfoxSubmitted over 1 year ago
I feel like my HTML is an accessibility nightmare. Would love some tips on making it more accessible.
I feel like my HTML is an accessibility nightmare. Would love some tips on making it more accessible.
The only problem you have is with centering the summary card element... you should have applied flex on the body and centered the items... and add a container for the summary card element and add the credits there.
css fixing:
body{display:flex; align-items: center; justify-content:center;}
html fixing:
<div class="outer-container"><div class="summary-card-container"></div> *credits here</div>