What the difference between classes with space and no space in css, what the use of multiple classes with no space
问题 I am making an accordion using CSS, the below is my use of CSS class without space. I use this to eliminate the animation of padding during slideDown and slideUp effect .acc_container.block{ padding: 20px; } since it stated out that padding is 20 pixels but when i check it seems like no padding at all!! instead, i need to add this in order to let my padding works .acc_container. block{ padding: 20px; } (with space) So what's the difference between the class in CSS with and without a space?