.text {
display: flex;
justify-content: center;
align-items: center;
}
.custom-srollbar::-webkit-scrollbar {
-webkit-appearance: none;
width: 8px;
}
.custom-srollbar::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: #c1c1c1;
}
.custom-srollbar::-webkit-scrollbar-thumb:hover {
background-color: #7d7d7d;
}
hasClass
toggleClass
<?php
function get_stock($id) {
ob_start();
?>
...тут html
<?php
$result = ob_get_clean();
return $result;
}
?>