You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<ul>
<li class="task-list-item" style="list-style-type: none;"><input type="checkbox" disabled style="margin: 0px 0.35em 0.25em -1.6em; vertical-align: middle;" checked> This is a complete item</li>
<li class="task-list-item" style="list-style-type: none;"><input type="checkbox" disabled style="margin: 0px 0.35em 0.25em -1.6em; vertical-align: middle;"> This is an incomplete item</li>
</ul>
Here is the output:
<ul><li class="task-list-item"><input type="checkbox" style="margin:0px 0.35em 0.25em" checked="checked" disabled="1" /> This is a complete item</li><li class="task-list-item"><input type="checkbox" style="margin:0px 0.35em 0.25em" disabled="1" /> This is an incomplete item</li></ul>
Note that
style="margin:0px 0.35em 0.25em"
but it should be:
style="margin: 0px 0.35em 0.25em -1.6em"
The text was updated successfully, but these errors were encountered:
The margin property is missing left alignment value after sanitisation.
Here is the code:
This is my input string:
Here is the output:
Note that
but it should be:
The text was updated successfully, but these errors were encountered: