From 9335341fd5be43bd0303a310c6539a3f03e4defb Mon Sep 17 00:00:00 2001 From: Mark Perkins Date: Mon, 25 Jun 2012 12:36:54 +0100 Subject: [PATCH] Minor doc tweak --- README.md | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 1257fa0..65342b0 100644 --- a/README.md +++ b/README.md @@ -94,16 +94,14 @@ Generates a font-size property the font-size in ems. * `@context-px-size`: *(Optional)* The font size (in pixels) of the current context. Defaults to the value of `@base-font-size` if not specified. ```css +/* Usage: */ p { .font-size-ems( 12 ); } - -/* -Outputs: +/* Output: */ p { font-size: 0.75em; } -*/ ``` ### .font-size-rems @@ -118,17 +116,15 @@ Calculates the font-size in rems and provides a pixel based fallback for browser * `@context-px-size`: *(Optional)* The font size (in pixels) of the current context. Defaults to the value of `@base-font-size` if not specified. ```css +/* Usage: */ p { .font-size-rems( 12 ); } - -/* -Outputs: +/* Output: */ p { font-size: 12px; font-size: 0.75rem; } -*/ ``` Grids