edit css style of an element with a space in its class name

后端 未结 3 982
广开言路
广开言路 2021-02-07 17:19

I\'m creating a tumblr them and I have to write an external CSS file but I am having trouble editing the css style of the post elements.

This its structure:

<         


        
3条回答
  •  温柔的废话
    2021-02-07 18:04

    The problem is that the class name has a space in it.

    This is not possible in CSS. What you are doing is giving the element two classes.

    You can address them such:

    .post.quote { .... }
    

    but in your case, it's probably better to use a valid separator like

    post_quote
    

提交回复
热议问题