Web Developer Tips 💻☕️
695 subscribers
45 photos
Download Telegram
👏3👍2🔥1
install node > 16 in M3

#node.js #nvm


@WebDeveloperTips
🔥2
#css


Left-to-right: Equivalent to margin-left: 20px

Right-to-left: Equivalent to margin-right: 20px

@WebDeveloperTips
👍2
#Html
Semantic html vs Div


@WebDeveloperTips
👍1
This media is not supported in your browser
VIEW IN TELEGRAM
Attribut #HTML universel: #popover

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:


<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