Как удалить белое пространство в правой стороне веб -страницы
html,body {
margin:0;
padding:0;
overflow-x:hidden;
}
Beautiful Barracuda
html,body {
margin:0;
padding:0;
overflow-x:hidden;
}
//Extenion function
fun String.removeWhitespaces() = replace(" ", "")
// Uses
var str = "This is an example text".removeWhitespaces()
println(str)