I'm curious about something. Can removing white space actually make a website load faster? For instance, take a look at the following CSS snippet -
body{
overflow-wrap:break-word;
word-break:break-word;
word-wrap:break-word
}
.hidden{
display:none
}
.invisible{
visibility:hidden
}
If I were to condense the code like this, would it have an impact on the speed of my website?
body{overflow-wrap:break-word;word-break:break-word;word-wrap:break-word}.hidden{display:none}.invisible{visibility:hidden}
This is just a small snippet from the source code of my site. If it does improve speed, could someone explain why?