Changes between Initial Version and Version 2 of Ticket #22019
- Timestamp:
- 09/27/2012 05:51:29 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #22019
-
Property
Summary
changed from
Twenty Ten - wrong math in style.css rem example
toTwenty Twelve: wrong math in style.css rem example
-
Property
Summary
changed from
-
Ticket #22019 – Description
initial v2 1 {{{ 1 2 22 $rembase: 14; 2 3 23 $line-height: 24; … … 8 9 33 font-size: 1.142857143rem; (16 / $rembase) 9 10 34 line-height: 1.846153846; ($line-height / 16) 10 11 }}} 11 12 line-height = $line-height: 24 / 16 = 1.5 12 13