I have am loading background images using CSS, but the images continue to come in blurry and then focus after a few seconds, how do I solve this issue?
I saw some answers on this question, but it didn't help with my case: How to prevent the background image from getting blurry
What is causing this to occur?
Any help is greatly appreciated
html:
<div class="first-row-container">
<div id="one-box" class="first-row-styles animation-target"></div>
<div class="divider"></div>
<div id="two-box" class="first-row-styles animation-target"></div>
<div class="divider"></div>
<div id="three-box" class="first-row-styles animation-target"></div>
<div class="divider"></div>
<div id="four-box" class="first-row-styles animation-target"></div>
<div>
css:
#one-box {
background-image: url("your-brand-here.jpg");
background-size: 100% 100%;
image-rendering: -webkit-optimize-contrast;
border-style: solid;
border-width: 2px;
border-color: #7f8c8d;
}
.first-row-container {
margin-left: 13%;
}