xmodule - Capa/HTML: adds in standard text-justification class names authors can use within table cells

This commit is contained in:
Brian Talbot
2013-09-19 17:14:48 -04:00
parent 97b738bc79
commit 7362e267d7
3 changed files with 56 additions and 18 deletions

View File

@@ -138,3 +138,15 @@ table td, th {
text-align: left;
font-size: 14px;
}
table td.cont-justified-left, table th.cont-justified-left {
text-align: left;
}
table td.cont-justified-right, table th.cont-justified-right {
text-align: right;
}
table td.cont-justified-center, table th.cont-justified-center {
text-align: center;
}