Closed Bug 784648 Opened 12 years ago Closed 7 months ago

[CSS: text-indent] Implement 'each-line' and 'hanging'

Categories

(Core :: Layout: Text and Fonts, enhancement)

enhancement

Tracking

()

RESOLVED FIXED
121 Branch
Tracking Status
relnote-firefox --- 121+
firefox121 --- fixed

People

(Reporter: George, Assigned: jfkthame)

References

(Blocks 2 open bugs, )

Details

(Keywords: css3, dev-doc-complete)

Attachments

(2 files)

User Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:14.0) Gecko/20100101 Firefox/14.0.1
Build ID: 20120713134347

Steps to reproduce:

Authors commonly want to add a text-indent on each paragraph of their writing.
(This is natural to anyone who composes documents in a page-based text editor)
To achieve this stylistic result, authors currently have to insert HTML code to delineate their paragraphs.

An author will, for example, write:

HTML
<article id=container>
<p>First paragraph ...</p>
<p>Second paragraph ...</p>
<p>Third paragraph ...</p>
</article>

CSS
p {text-indent: 2em;}

This unnecessarily pollutes the DOM with excess elements. Authors rarely plan to style each paragraph individually (beyond the current limitation of text-indent).

But, with text-indent: each-line implemented, an author could write the much simpler:

<article id=container>
First paragraph <br>
Second paragraph <br>
Third paragraph <br>
</article>

article {text-indent: 2em each-line}

Of course, if there is a practical reason to denote each paragraphs' start /end (JavaScript manipulation, linking through ids etc), the old way of adding markup would still be valid. But this is usually the exception, not the rule.

Interested readers can view the specification here:
http://www.w3.org/TR/css3-text/#text-indent0

Thank you for your time.
Component: Untriaged → Style System (CSS)
Product: Firefox → Core
Severity: normal → enhancement
Status: UNCONFIRMED → NEW
Ever confirmed: true
Keywords: css3
OS: Mac OS X → All
Hardware: x86 → All
Version: 14 Branch → unspecified
There's also `text-indent: (value) hanging` and the combination of both. This bug should probably cover both as they are supplementary.
Blocks: css3test
According to comment 3 the title of this issue should probably be changed to include 'hanging'.

Sebastian
> According to comment 3
Of course I meant comment 1.

Sebastian
Summary: [CSS: text-indent] Implement each-line → [CSS: text-indent] Implement 'each-line' and 'hanging'
Blocks: css-text-3
Component: CSS Parsing and Computation → Layout: Text and Fonts
Severity: normal → S3

It seems the data on MDN and caniuse.com is outdated, as Safari apparently supports these as of version 16 (or perhaps 17, where the values do seem to be working for me in live testing). Chrome also has them behind an experimental flag, so it might be worth revisiting the priority here.

According to https://github.com/mdn/browser-compat-data/issues/20363, they've been supported since Safari 15.

Assignee: nobody → jfkthame
Status: NEW → ASSIGNED
Keywords: dev-doc-needed
Pushed by jkew@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/5d24c715fa6f
Implement the 'hanging' and 'each-line' options for CSS text-indent. r=emilio
https://hg.mozilla.org/integration/autoland/rev/fd55b93190fe
Update WPT metadata for tests that now pass. r=dholbert
Status: ASSIGNED → RESOLVED
Closed: 7 months ago
Resolution: --- → FIXED
Target Milestone: --- → 121 Branch

Did you want to nominate this for the Fx121 release notes?

Flags: needinfo?(jfkthame)

Release Note Request (optional, but appreciated)
[Why is this notable]: Simplifies the creation of hanging-indent layouts, which is a common author request.
[Affects Firefox for Android]: yes
[Suggested wording]: The CSS text-indent property now supports the 'hanging' and 'each-line' keywords, offering more convenient paragraph layout for styles such as bibliographies, poetry, etc.
[Links (documentation, blog post, etc)]: https://drafts.csswg.org/css-text/#text-indent-property

relnote-firefox: --- → ?
Flags: needinfo?(jfkthame)
Regressions: 1860932
Regressions: 1861216
Regressions: 1861716

Added to the Fx121 relnotes.

You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: