这段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>
答案 0 :(得分:1)
右嵌套应为以下内容:
this.state = {
thumbnail_vids: [
require('../thumbnails/asthma_1.jpeg')
]
...