JSFiddle - React, Tailwind, and code Playground

by nikolya223

HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
#sloy4{

width: 900px;
height:50px;
background:red;
position: relative;
left: 50%;
margin-left: -450px;
    text-align: center;
}
    .sloy4_overflow{        
    position: absolute;  
    top: 50px;
    overflow-x:hidden;
    width: 100%;
    height:50px;
    
    
    }
</style>
</head>
<body>
    <div class="sloy4_overflow" ><div id="sloy4">wertwert</div></div>
</body>
</html>