Hello everyone, I have a CSS code that I need help with. See below:
.left {
margin-bottom: 20px;
}
It works fine on Windows OS with Safari and Chrome browsers, but it's all messed up on Mac OS Safari. After debugging in Mac, I found that it needs to be like this:
.left {
margin-bottom: 30px;
margin-left: -120px;
}
If anyone can help me solve this issue, I would greatly appreciate it.