View Single Post
Old 01-25-2017, 02:33 PM   #23
RbnJrg
Wizard
RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.RbnJrg ought to be getting tired of karma fortunes by now.
 
Posts: 1,849
Karma: 8700631
Join Date: Mar 2013
Location: Rosario - Santa Fe - Argentina
Device: Kindle 4 NT
Quote:
Originally Posted by ebookreadr View Post
The nook simple touch I use does recognize this:

Code:
margin: 0 0 0.5em;
I used to use this a lot, but have stopped inserting/changing the space after the paragraphs. Do you still consider this 'shorthand form'?
Hi ebookreadr;

Yes, that is one of the several shorthand form for the property margin. You could use:

Code:
margin: value; /* the four margins are equal to value */
Code:
margin: value1 value2; /* value1 is for top/bottom margins and value2 is for left/right margins */
Code:
margin: value1 value2 value3; /* value1 is for top margin, value2 is for left/right margins and value3 is for bottom margin */
Code:
margin: value1 value2 value3 value4; /* value1 is for top margin, value2 is for right margin, value3 is for bottom margin and value4 is for left margin */
Since I don't have a Nook touch, I can't tell you if that model supports the shortand form for margin. But one things is sure, not all models of Nook support that way of scripture. Here, in MR, was talked a lot about Nook and his poor support for shorthand forms of css properties.

Regards
Rubén
RbnJrg is offline   Reply With Quote