mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-09 12:20:25 +01:00
17 lines
284 B
CSS
17 lines
284 B
CSS
|
.editor-styles-wrapper,.entry-content{
|
||
|
counter-reset:footnotes;
|
||
|
}
|
||
|
|
||
|
.fn{
|
||
|
counter-increment:footnotes;
|
||
|
display:inline-block;
|
||
|
font-size:smaller;
|
||
|
text-indent:-9999999px;
|
||
|
vertical-align:super;
|
||
|
}
|
||
|
|
||
|
.fn:after{
|
||
|
content:"[" counter(footnotes) "]";
|
||
|
float:left;
|
||
|
text-indent:0;
|
||
|
}
|