8,037 Matching Annotations
- Dec 2023
-
hypothes.is hypothes.is
Tags
Annotators
URL
-
-
mastodon.social mastodon.social
-
bbycroft.net bbycroft.net
-
-
www.allocine.fr www.allocine.fr
- Nov 2023
-
moment.github.io moment.github.io
-
-
www.centrepompidou.fr www.centrepompidou.fr
Tags
Annotators
URL
-
-
-
✅ We can actually use a neat trick which basically consists in making a CSS grid with a single grid item. All we really have to do then, is taking our grid-template-rows and make it transition from 0fr to 1fr: this way, our grid item will transition from 0 to its "natural" height. It's THAT simple:
```css .accordion - body { display: grid; grid - template - rows: 0 fr; transition: 250 ms grid - template - rows ease; }
.accordion: hover.accordion - body { grid - template - rows: 1 fr; }
.accordion - body>div { overflow: hidden; } ```
-
-
flaviocopes.com flaviocopes.com
-
```js import path from 'path'; import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); ```
Tags
Annotators
URL
-
-
pnote.eu pnote.eu
Tags
Annotators
URL
-
-
www.larevuedupraticien.fr www.larevuedupraticien.frAccueil1
-
www.lequotidiendumedecin.fr www.lequotidiendumedecin.fr
-
apitracker.io apitracker.io
-
-
alan.norbauer.com alan.norbauer.com
Tags
Annotators
URL
-
-
www.librarything.com www.librarything.com
Tags
Annotators
URL
-
-
blog.librarything.com blog.librarything.com
-
www.librarything.com www.librarything.com
-
-
dave.cheney.net dave.cheney.net
Tags
Annotators
URL
-
-
ontobee.org ontobee.orgOntobee1
Tags
Annotators
URL
-
-
ontobee.org ontobee.orgOntobee1
-
-
github.com github.com
-
schema.org schema.org
Tags
Annotators
URL
-
-
schema.org schema.org
Tags
Annotators
URL
-
-
web.resource.org web.resource.org
Tags
Annotators
URL
-
-
asistdl.onlinelibrary.wiley.com asistdl.onlinelibrary.wiley.com
-
soundcloud.com soundcloud.com
-
developer.chrome.com developer.chrome.com
-
<div itemscope itemtype="http://schema.org/Code"> ```js let db; const DBOpenRequest = window.indexedDB.open("toDoList", 4); DBOpenRequest.onsuccess = (event) => { db = DBOpenRequest.result; }; const transaction = db.transaction( ['toDoList'], 'readwrite', { durability: 'strict' }); ``` </div>
-
-
bjork.bandcamp.com bjork.bandcamp.com
-
bjork.bandcamp.com bjork.bandcamp.com
-
css-tricks.com css-tricks.com
Tags
Annotators
URL
-
-
podcast.ausha.co podcast.ausha.co
-
developer.mozilla.org developer.mozilla.org
- Oct 2023
-
webauthn.wtf webauthn.wtf
Tags
Annotators
URL
-
-
www.npmjs.com www.npmjs.com
-
community.cloudflare.com community.cloudflare.com
-
stackoverflow.com stackoverflow.com
-
soundcloud.com soundcloud.com
-
soundcloud.com soundcloud.com
-
www.allocine.fr www.allocine.fr
Tags
Annotators
URL
-
-
soundcloud.com soundcloud.com
-
hbz.github.io hbz.github.io
Tags
Annotators
URL
-
-
cran.r-project.org cran.r-project.org
-
github.com github.com
-
docs.atomicdata.dev docs.atomicdata.dev
Tags
Annotators
URL
-
-
perso.liris.cnrs.fr perso.liris.cnrs.fr
-
w3c.github.io w3c.github.io
-
www.baeldung.com www.baeldung.com
Tags
Annotators
URL
-
-
open-ui.org open-ui.orgHome1
Tags
Annotators
URL
-
-
developer.chrome.com developer.chrome.com
-
Now, you can add <hr> (horizontal rule) elements into the list of select options and they will appear as separators to help visually break up the options
<div itemscope itemtype="http://schema.org/Code"> ```html <label for="major-select">Please select a major:</label> <br/> <select name="majors" id="major-select"> <option value="">Select a major</option>
<option value="arth">Art History</option> <option value="finearts">Fine Arts</option> <option value="gdes">Graphic Design</option> <option value="lit">Literature</option> <option value="music">Music</option>
<option value="aeroeng">Aerospace Engineering</option> <option value="biochemeng">Biochemical Engineering</option> <option value="civileng">Civil Engineering</option> <option value="compeng">Computer Engineering</option> <option value="eleng">Electrical Engineering</option> <option value="mecheng">Mechanical Engineering</option> </select> ``` </div>
Tags
Annotators
URL
-
-
www.mixcloud.com www.mixcloud.com
-
soundcloud.com soundcloud.comN.E.M.1
-
infra.spec.whatwg.org infra.spec.whatwg.org
-
-
chrome.google.com chrome.google.com
-
developer.chrome.com developer.chrome.com
-
rdf.insee.fr rdf.insee.fr
-
datatracker.ietf.org datatracker.ietf.org
-
hypothes.is hypothes.is
-
-
gist.github.com gist.github.com
-
www.dnb.de www.dnb.de
-
www.dnb.de www.dnb.de
-
www.dnb.de www.dnb.de
-
www.dnb.de www.dnb.de
-
research.securitum.com research.securitum.com
-
developer.chrome.com developer.chrome.com
Tags
Annotators
URL
-
-
blacksmithgu.github.io blacksmithgu.github.io
-
blacksmithgu.github.io blacksmithgu.github.ioFields1
-
nota-lang.org nota-lang.org
-
-
typst.app typst.app
-
-
nota-lang.org nota-lang.org
Tags
Annotators
URL
-
-
dl.acm.org dl.acm.org
-
Tags
Annotators
URL
-
-
beta.next.ink beta.next.inkNext1
Tags
Annotators
URL
-
-
www.dataversity.net www.dataversity.net
-
owl.man.ac.uk owl.man.ac.uk
-
blog.rolandl.fr blog.rolandl.fr
-
blog.cloudflare.com blog.cloudflare.com
-
While the interface among services is HTTP, the networking is not. In fact, there is no networking! Unlike the typical “microservice architecture,” where services communicate over a network and can suffer from latency or interruption, service bindings are a zero-cost abstraction. When you deploy a service, we build a dependency graph of its service bindings, then package all of those services into a single deployment. When one service invokes another, there is no network delay; the request is executed immediately.This zero-cost model enables teams to share and reuse code within their organizations, without sacrificing latency or performance.
-
-
developers.cloudflare.com developers.cloudflare.com
-
digitalriceprojects.pbworks.com digitalriceprojects.pbworks.com
-
www.wipo.int www.wipo.int
-
www.w3.org www.w3.org
-
www.w3.org www.w3.org
Tags
Annotators
URL
-
-
github.com github.com
-
www.ifla.org www.ifla.org