Is there a way to make my text adjust to different screen sizes and remain fixed in position?
I would like my text to be centered and have its position fixed
Did I do the right thing by centering the text or is there a better way? Also, how can I solve my issue with positioning?
Thank you for your help!
Here is my HTML:
<div class="text-center">
<h2>Protein for healthy muscle and bone</h2>
<strong>proteins in the diet contribute significantly to the production of energy for the body.</strong>
</div>
And here is my CSS code using Bootstrap 4:
h2, h4, p, strong, small {
color: oldlace;
}
div {
position: absolute;
top: 10%;
margin-left: 25%;
width: 700px;
}