Answers for "html remove unwanted white space"

CSS
0

html remove space after paragraph

li p {
    margin: 0;
    padding: 0;
}
Posted by: Guest on June-08-2021
0

remove whitespaces

//Extenion function
fun String.removeWhitespaces() = replace(" ", "")

// Uses
var str = "This is an example text".removeWhitespaces()

println(str)
Posted by: Guest on July-28-2021

Browse Popular Code Answers by Language