#css
Left-to-right: Equivalent to margin-left: 20px
Right-to-left: Equivalent to margin-right: 20px
@WebDeveloperTips
Left-to-right: Equivalent to margin-left: 20px
Right-to-left: Equivalent to margin-right: 20px
@WebDeveloperTips
👍2
This media is not supported in your browser
VIEW IN TELEGRAM
Attribut #HTML universel: #popover
example:
@WebDeveloperTips
example:
<button popovertarget="my-popover">Open Popover</button>
<div popover id="my-popover">Greetings, one and all!</div>@WebDeveloperTips
👍4
This media is not supported in your browser
VIEW IN TELEGRAM
#HTML #dialog element
example:
@WebDeveloperTips
example:
<button command="show-modal" commandfor="my-dialog">Open dialog</button>
<dialog id="my-dialog">
<p>This dialog was opened using an invoker command.</p>
<button commandfor="my-dialog" command="close">Close</button>
</dialog>
@WebDeveloperTips
👍4