HTML CSS 如何表達 Class Name 裡面的 space 空白

在 HTML 一般常用情況之中,

Class Name 大都是相連的,

如: <div class="helloworld">Hi</div>

則在 CSS 中, 會以 .helloworld{...}div.helloworld{...} 表達之

但若是 Class Name 有空白,

如: <div class="hello world">Hi</div>

則在 CSS 中, 必須以 .hello.world{...}div.hello.world{...} 表達之

Related Posts Plugin for WordPress, Blogger...