1234567891011121314151617181920212223 |
- /* Da aggiungere all'altro CSS, direi */
- .italic {
- font-style: italic;
- }
- .bold {
- font-weight: bold;
- }
- .underline {
- text-decoration-line: underline;
- }
- .linethrough {
- text-decoration-line: line-through;
- }
- /* Ugly workaround */
- .underlinethrough {
- text-decoration-line: underline line-through;
- }
|