Fomantic-UI
Fomantic-UI copied to clipboard
Ordered list does not support "start" attribute
Bug Report
<ol>
-based ordered list does not support native start
attribute.
Ref. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/ol
Steps to reproduce
<ol class="ui ordered list" start="100">
https://jsfiddle.net/y42Lu9ds/
Expected result
The counting of ordered list starts from 100
Actual result
Starts from 1
Version
2.7.8
Related
#1130: Ordered list does not take care of digits-length.
Initial number of counter
can be set like counter-reset: ordered 100
, but using attr(data)
seems impossible since attr
function returns string
by default.
In future, we may speciry type and default value in attr
like below, but such features seem unsupported in current browsers.
ol {
counter-reset: ordered attr(start integer, 1);
}
Hi, @lubber-de and @exoego can I take up this issue?
Hi, @lubber-de and @exoego can I take up this issue?
Sure 😊