CSS font-size not normal
peterx - January 11, 2007 - 08:38
| Project: | Book Review |
| Version: | 4.7.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
In the following CSS, font-size normal is not valid.
.bookreview .label2 { font-weight: bold; font-size: normal; float: left; padding-right: 5px; }
.bookreview .content2 { font-weight: normal; font-size: normal; }Replace with medium:
.bookreview .label2 { font-weight: bold; font-size: medium; float: left; padding-right: 5px; }
.bookreview .content2 { font-weight: normal; font-size: medium; }