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.

5165 links 

page 1 / 1

Liste des liens

10 results tagged table x
[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
Dynamic Tables — dynamically created tables that are filterable, sortable, and in-line editable
2021-09-22 11:39 - permalink -

Créer des tableaux dynamiques à partir de données de tiddlers.

dynamique table Tiddlywiki
- https://ooktech.com/jed/ExampleWikis/DynamicTables/
SortTable.js - Le Hollandais Volant
2018-11-19 9:2 - permalink -

Cool. Ça m'a l'air de bien fonctionner en effet sauf les flèches qui ne s'affichent pas. Tu as utilisé quoi dans ton js pour ça ?

javascript script sort table tri
- https://lehollandaisvolant.net/?mode=links&id=20181118162019
Tabulator
2018-09-28 17:44 - permalink -

Pas mal. Via Yome.

css html javascript table
- http://tabulator.info/
Supplément latin-1 — Table de caractères Unicode®
2018-09-11 23:41 - permalink -

Table de correspondance entre élément unicode et html. Pratique.

html table unicode UTF-8
- https://unicode-table.com/fr/#latin-1-supplement
A Responsive Accessible Table | Adrian Roselli
2017-12-14 0:38 - permalink -

Pour des tableaux "responsives". À tester avec des tableaux plus complexes...

css html javascript table
- http://adrianroselli.com/2017/11/a-responsive-accessible-table.html
Sortie de Tabula 1.0.1 - Extraction de données tabulaires dans des pdfs - LinuxFr.org
2015-09-16 15:33 - permalink -

À tester.

extraction pdf table
- http://linuxfr.org/news/sortie-de-tabula-1-0-1-extraction-de-donnees-tabulaires-dans-des-pdfs
sorttable: Make all your tables sortable
2015-08-27 15:28 - permalink -

Coudifiée

javascript librairie sort sorttable table
- http://www.kryogenix.org/code/browser/sorttable/
Note : les tables en responsive design. - Le Hollandais Volant
2014-01-8 10:47 - permalink -

Une autre manière de faire et nécessitant de connaître les entêtes du tableau, trouvée ici : http://css-tricks.com/responsive-data-tables/

/ ------------Responsive tables----------------- /
/
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
/
@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

/* Force table to not be like tables anymore */
table, thead, tbody, th, td, tr { 
    display: block; 
}

/* Hide table headers (but not display: none;, for accessibility) */
thead tr { 
    position: absolute;
    top: -9999px;
    left: -9999px;
}

tr { border: 1px solid #ccc; }

td { 
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee; 
    position: relative;
    padding-left: 50%; 
}

td:before { 
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%; 
    padding-right: 10px; 
    white-space: nowrap;
}

/*
Label the data

td:nth-of-type(1):before { content: "First Name"; }
td:nth-of-type(2):before { content: "Last Name"; }
td:nth-of-type(3):before { content: "Job Title"; }
td:nth-of-type(4):before { content: "Favorite Color"; }
td:nth-of-type(5):before { content: "Wars of Trek?"; }
td:nth-of-type(6):before { content: "Porn Name"; }
td:nth-of-type(7):before { content: "Date of Birth"; }
td:nth-of-type(8):before { content: "Dream Vacation City"; }
td:nth-of-type(9):before { content: "GPA"; }
td:nth-of-type(10):before { content: "Arbitrary Data"; }*/

td.nbphotos:nth-of-type(1):before { content: "Nombre"; }
td.optionphotos:nth-of-type(2):before { content: "Options"; }
td.prixphotos:nth-of-type(3):before { content: "Prix"; }
td.bon:nth-of-type(4):before { content: "Bon"; }

td.ancien:nth-of-type(1):before { content: "Ancien"; }
td.nouveau:nth-of-type(2):before { content: "Nouveau"; }

}
/ ------------Responsive tables----------------- /

via SebSauvage : http://sebsauvage.net/links/?cMa5jw

css responsive table
- http://lehollandaisvolant.net/?mode=links&id=20140107205810
FooTable | Themergency
2012-11-29 15:49 - permalink -

script jquery permettant de compresser des colonnes de tableaux de données de manières à pouvoir afficher ce tableau sur des mobiles

jquery table
- http://themergency.com/footable/
page 1 / 1


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