.cellformat { vertical-align: center; }
.tablecontent { width: 100%; }
.hide { visibility: hidden; }
Front Temp:
<table class="tablecontent">
<tr><td class="cellformat">{{Front}}</td></tr>
</table>
Back Temp:
<table class="tablecontent">
<tr><td class="cellformat">
{{Front}}
<hr id=answer>
{{Back}}
</td></tr></table>
(...).cellformat { vertical-align: center; }
(...)
| 3 | .cellformat | Value Error : vertical-align center is not a vertical-align value : center |
(...) the W3C CSS vallidator t (...):
(...) one prefixed with .mobile and the other with :not(.mobile) (or whatever the correct way is). (...)
.mobile {color:blue;}
"""body:not(.mobile){ color: red; }
.mobile{ color: blue; }
I think it's a specificity issue with the :not selector. This will work:body:not(.mobile){ color: red; }
.mobile{ color: blue; }