So i got an issue about my wordpress site i got a little overflow on my index site so i tried to get rid of it by using
**overflow-x:hidden;**
and
**overflow-x:clip;**
it worked on my computer and my (iphone 12 mini) but when i checked it on my friends phone the overflow was still there i thought it was about the cache but it wasnt about that i even used the overflow codes with @media (max-width:992px) and so on but it was just not working for some phone's so i used a lower px on my next attempt but it didnt work again i was wondering whats the problem i got.
so i tried
**overflow-x:hidden;**
and
**overflow-x:clip;**
And i tried different width sizes but it was just not working for some phones
can someone help?
@media (max-width: 767px)
html {
overflow-x: clip !important;
}
//Two different codes that i have tried
@media (max-width: 767px)
html{
overflow-x:hidden !important;
}
<html>
<head>
<title>test</title>
</head>
<body>
<!-- i cant share my html info -->
</body>
</html>