Is there a way to make this css code responsive for a website? I believe I need to use:
@media (min-width: 700px) and (max-width: 1150px) {
#div {position: absolute; left: 149px; top: 61px;}
#div2 {position: absolute; left: 249px; top: 81px;}
#div3 {position: absolute; left: 279px; top: 181px;}
#div4 {position: absolute; left: 449px; top: 121px;}
}
However, I have multiple div
tags that need editing. Is there a quicker solution?
Making changes to around 45 div
s seems like a daunting task.
Any advice would be greatly appreciated as I am new to this.