Answers for "remove image white space css"

CSS
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
0

Remove White Space Below Image Elements

img {
  display: block;
}
Posted by: Guest on April-16-2020

Browse Popular Code Answers by Language