如何使用SASS正确嵌套表属性?

时间:2018-10-21 15:55:12

标签: sass

这段SASS代码有效:

.tableauQuestions
{
    width: 100%; 
    background-color: black;
}

.tableauQuestions td
{
    background-color: $coulCellTabQuestions;
    width: 33%;
    color: $coulTxtTabQuestion;
}

但是这个table属性没有格式。

.tableauQuestions
{
   table // also tried: body
   {
        width: 100%; 
        background-color: black;
    }

    td
    {
        background-color: $coulCellTabQuestions;
        width: 33%;
        color: $coulTxtTabQuestion;
    }
}

我在做什么错了,正确的嵌套代码应该是什么

编辑:HTML尽可能简单:

<table class="tableauQuestions">
    <tr>
        <td>Bon         
        <td>Excellent
        <td>Moyen
    </tr>
</table>

1 个答案:

答案 0 :(得分:1)

右嵌套应为以下内容:

this.state = {
  thumbnail_vids: [
    require('../thumbnails/asthma_1.jpeg')
  ]
  ...

About Nesting