Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecss
titleCSS-Beispiele
/* Zweites Element von Hinten ausblenden */
#GRAPHOMATETABLE_1_control tbody tr:nth-last-child(2)
{
    display: none !important;
}

/* Drittes, Viertes und Fünftes Element ausblenden */
#GRAPHOMATETABLE_1_control tbody tr:nth-child(3),
#GRAPHOMATETABLE_1_control tbody tr:nth-child(4),
#GRAPHOMATETABLE_1_control tbody tr:nth-child(5)
{
    display: none !important;
}


/* Tabellen Header ausblenden */
#GRAPHOMATETABLE_1_control thead
{
	display: none;
}


/* ERSTE SPALTE AUSBLENDEN */
#GRAPHOMATETABLE_1_control tr th:nth-child(1),
#GRAPHOMATETABLE_1_control tr td:nth-child(1)
{
	display: none;
}


Verwandte Artikel

Filter by label (Content by label)
showLabelsfalse
max5
spacesKUNDEN
showSpacefalse
sortmodified
reversetrue
typepage
cqllabel in ("css","ausblenden","display","spalte","zeile","tabellenkopf","tables","spaltenkopf") and type = "page" and space = "KUNDEN"
labelstables ausblenden Spalte Zeile Tabellenkopf Spaltenkopf CSS display

...