Afficher/masquer le menu
Liens Ecyseo
  • Tags cloud
  • Daily
  • Pictures wall
  • Search
  • Display options
    • Links per page :
    • 20 links
    • 50 links
    • 100 links
  • RSS Feed
  • Login

J'ai besoin d'intimité. Non pas parce que mes actions sont douteuses, mais parce que votre jugement et vos intentions le sont.

5166 links 

page 1 / 4

Liste des liens

74 results tagged html x
Styling Counters in CSS | CSS-Tricks
2025-03-18 17:50 - permalink -
counter css html
- https://css-tricks.com/styling-counters-in-css/
Datalist, a native autosuggest
2023-12-15 1:1 - permalink -

Instead of installing $your-framework-autosuggest, try out datalist in your next project. Datalist is the browsers built-in way of showing a list of options as a user types into an input.

<input list="frameworks" />

<datalist id="frameworks">
  <option>Bootstrap</option>
  <option>Tailwind CSS</option>
  <option>Foundation</option>
  <option>Bulma</option>
  <option>Skeleton</option>
</datalist>

To use it, you add a datalist element with an ID and a set of options to your HTML. Don't worry, the element won't be visible. Then you use the list attribute on an input to associate the two.

As a user now types into the input, the browser will show the datalist as a dropdown, automatically filtering the options as the user types. Because it's a regular input though, users still have the option to type in their own value. Lastly, they can see all of the options by selecting the input and using the arrow keys to navigate the list, or clicking the dropdown icon the browser adds.

astuce css html liste
- https://www.htmhell.dev/adventcalendar/2023/2/
Word document generation [Wiki de sebsauvage.net]
2023-08-17 0:58 - permalink -

Encore un excellent tuto de SebSauvage.
Que serait le web français sans lui ???

Merci Seb !!!

astuce html outils php tutoriels word
- https://sebsauvage.net/wiki/doku.php?id=word_document_generation
[CSS] Rendre un tableau responsive | by Vanessa Asse | Medium
2023-04-11 18:12 - permalink -
    <table class=”events-table” >
    <caption>Évènements</caption>
    <thead>
    <tr>
    <th class=”event-date”>Date</th>
    <th class=”event-time”>Horaire</th>
    <th class=”event-description”>Evènement</th>
    </tr>
    </thead>

    <tbody>
    <tr>
    <td data-label=”Date”> Le #_EVENTDATES</td>
    <td data-label=”Horaire”>#_EVENTTIMES</td>
    <td data-label=”Evènement”>#_EVENTLINK</td>
    </tr>
    </tbody>
    </table>

Je pense à ajouter un “data-label” à chacun de mes “td”.

Et voici le CSS :


table caption {
    display: none;
}

@media all and (max-width:500px){
    table{
        width:100%;
    }

    table caption {
        display: block;
        background-color: #484d55;
        color:white;
    }

    .table thead {
    display: none;
    }

    .table tr{
    display: block;
    margin-bottom: 40px;
    }

    .table td {
    display: block;
    text-align: right;
    }

    .table td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    }
}
css html table
- https://medium.com/@vanessaasse/rendre-un-tableau-responsive-5ed9ab7bb3ed
GitHub - LeaVerou/md-block: A custom element for rendering stylable (light DOM) Markdown
2022-05-2 10:9 - permalink -

Ne fonctionne que sous Chrome...
=> poubelle (même si ça semble pas mal)

html markdown
- https://github.com/leaverou/md-block
Link Lock - Password-protect links
2021-12-1 16:20 - permalink -

Ajouter un mot de passe à n'importe quelle url.

html javascript outils password
- https://jstrieb.github.io/link-lock/create/
GitHub - jstrieb/urlpages: Create and view web pages stored entirely in the URL
2021-12-1 16:19 - permalink -

Encoder une page dans l'url en base64, à la manière de zerobin.

css html javascript outils
- https://github.com/jstrieb/urlpages
Transitioning Between Variable Heights with CSS Tabs
2021-07-1 14:20 - permalink -

Des onglets en css pur.

css html onglet
- https://codepen.io/fusco/pen/Wvzjrm
Pure CSS Floating Label Textfield
2021-07-1 14:9 - permalink -

D'autres solutions ici : https://github.com/you-dont-need/You-Dont-Need-JavaScript

Via SebSauvage

css html tutoriels
- https://codepen.io/KtorZ/pen/ZOzdqG
HTML Tags Memory Test
2021-05-18 1:53 - permalink -

Il m'en manque 4...


    a
    html
    body
    head
    footer
    div
    span
    p
    article
    dd
    dt
    th
    thead
    tbody
    td
    caption
    h1
    h2
    h3
    h4
    h5
    h6
    ul
    li
    ol
    meta
    link
    style
    script
    b
    u
    small
    i
    aside
    video
    object
    iframe
    audio
    svg
    details
    summary
    dialog
    data
    base
    meter
    progress
    nav
    label
    form
    input
    textarea
    fieldset
    button
    pre
    code
    section
    time
    img
    blockquote
    strong
    title
    br
    template
    main
    em
    dl
    datalist
    option
    del
    optgroup
    select
    embed
    output
    canvas
    source
    track
    col
    tfoot
    table
    tr
    q
    cite
    abbr
    address
    sup
    sub
    var
    kbd
    samp
    hr
    noscript
    s
    map
    figure
    figcaption
    ins
    dfn
    bdi
    bdo
    mark
    rb
    rp
    rt
    ruby
    wbr
    area
    param
   hgroup
   picture
   slot
   math
html
- https://codepen.io/plfstr/full/zYqQeRw
Recipe - Schema.org Type
2021-04-28 19:12 - permalink -

Le schéma pour les recettes de cuisine

cuisine html recette schema
- https://schema.org/Recipe
html2pdf/example12.php at master · spipu/html2pdf · GitHub
2021-02-24 11:13 - permalink -

Pour remplacer les puces par des images (ou changer le style de la puce), il faut placer la règle css dans la balise ul, sinon, dans la balise  <style type="text/css">, ça ne fonctionne pas.

astuce html html2pdf pdf
- https://github.com/spipu/html2pdf/blob/master/examples/res/example12.php
JSON Resume
2021-02-13 21:11 - permalink -

Un cv en JSON. Plusieurs thèmes possible.

CV html json npm pdf
- https://jsonresume.org/
How to Favicon in 2021: Six files that fit most needs — Martian Chronicles, Evil Martians’ team blog
2020-12-24 10:36 - permalink -

Extremely short version

Instead of serving dozens of icons, all you need is just five icons and one JSON file.

In your HTML, for the browser:

<link rel="icon" href="/favicon.ico" /><!-- 32×32 -->
<link rel="icon" href="/icon.svg" type="image/svg+xml" sizes="any" />
<link rel="apple-touch-icon" href="/apple.png" /><!-- 180×180 -->
<link rel="manifest" href="/manifest.webmanifest" />

And in your web app manifest:

// manifest.webmanifest
{
"icons": [
{ "src": "/192.png", "type": "image/png", "sizes": "192x192" },
{ "src": "/512.png", "type": "image/png", "sizes": "512x512" }
]
}
favicon html
- https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs
Brave takes brave stand against Google's plan to turn websites into ad-blocker-thwarting Web Bundles • The Register - Liens en vrac de sebsauvage
2020-09-1 16:41 - permalink -

C'est dans la même veine que le DOM Sahdow de Facebook ?

gafam html vie-privée web
- https://sebsauvage.net/links/?_Jm6RQ
Réalisez des présentations en quelques minutes avec Wanaprez ! - Wanadev
2020-08-18 13:12 - permalink -

Pour réaliser des présentations simples mais propres en markdown.

html javascript libreoffice powerpoint présentation
- https://www.wanadev.fr/214-realisez-des-presentations-en-quelques-minutes-avec-wanaprez/
Old CSS, new CSS / fuzzy notepad
2020-07-17 23:36 - permalink -

Un peu d'histoire du web. Dire qu'on a connu ça, ça ne nous rajeunit pas...

css histoire html web
- https://eev.ee/blog/2020/02/01/old-css-new-css/
Offline MDN Docs - Kapeli
2020-07-6 13:6 - permalink -

Intéressant car souvent Zeal plante avec les docs MDN

css documentation html javascript svg tutoriels xslt
- https://kapeli.com/mdn_offline
Inclusively Hiding & Styling Checkboxes and Radio Buttons — Sara Soueidan – Freelance-Front-End UI/UX Developer
2020-06-24 20:29 - permalink -

Checkboxes and radio buttons are two common examples of interactive form elements that we desperately want to have full control over styling but we don’t. So we’ve been hacking our way around styling them by hiding said elements with CSS and visually replacing them with pseudo-elements or an SVG image — SVG, of course, being the more flexible, powerful, and accessible replacement. But an SVG image is, at the end of the day, just an image, so while it can visually replace a checkbox, it doesn’t really substitute for it — the user still needs a checkbox to interact with. So, when we attempt to hide the checkbox we want to style, we need to make sure that the checkbox remains accessible and interactive.

checkbox css html radio svg tutoriels
- https://www.sarasoueidan.com/blog/inclusively-hiding-and-styling-checkboxes-and-radio-buttons/
GitHub - jeroenpardon/sui: a startpage for your server and / or new tab page
2020-06-2 14:40 - permalink -

Autant le design est pas mal, autant faire appel à docker, jquery et consort pour une simple page html, c'est un peu abusé je trouve.

css html
- https://github.com/jeroenpardon/sui
page 1 / 4


Tags


  • shaarli
  • wikipedia

Tags cloud

Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation
Affiches "loi aviva" créées par Geoffrey Dorne le 13 Mai, 2020 - Mastodon 1 - Mastodon 2