Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

From this page - http://www.learn-xsl-fo-tutorial.com/Blocks-Inlines.cfm#h1.4

'The list-item-body FO contains the actual content of the list item. It often takes the start-indent attribute with the value of body-start(), indicating that the body of the list item should start at the beginning of the list-item-body box.'

I have searched for a more understandable statement but I have failed. So can someone explain the part in bold above with more words, please.

Thanks.

share|improve this question

2 Answers

The start-indent attribute specifies where the list-item-body should start. The function body-start() returns the relative position of the start point of the body.

The way I interpret this is that it's basically saying start the indent from the point of the list-item-body with no additional indent.

Not sure if this is any better an explanation or not.

share|improve this answer
Thank you, that does make sense. – user1022402 Nov 1 '11 at 9:22

As you probably know, each fo:list-item has an fo:list-item-label and an fo:list-item-body, where the label is usually something like a bullet and the body contains the actual content (text, etc.).

The body's start-indent attribute governs the indent between the label and the body in inline-progression-dimension, which in normal circumstances means the horizontal direction (although this can be changed).

Since body-start calculates the position one usually needs anyway, one would imagine that it is the default value. But as this link http://www.renderx.com/tutorial.html states, body-start "is not a default value; don't forget to specify it on each <fo:list-item-body>".

share|improve this answer
I see, thank you. – user1022402 Nov 1 '11 at 9:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.