<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Kommentare zu: CSS Table Header Fixed &#8211; thead einer Tabelle fixieren	</title>
	<atom:link href="https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/</link>
	<description></description>
	<lastBuildDate>Mon, 28 Apr 2025 11:41:50 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.2</generator>
	<item>
		<title>
		Von: Alan		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-75</link>

		<dc:creator><![CDATA[Alan]]></dc:creator>
		<pubDate>Wed, 26 Oct 2022 09:12:04 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-75</guid>

					<description><![CDATA[@Rollo: das kann auch nicht klappen, weil du mit deinen Echo s nur deinen Text ausgiebst.. und keine html Syntax. Da klappen dann auch keine Stylesheets.]]></description>
			<content:encoded><![CDATA[<p>@Rollo: das kann auch nicht klappen, weil du mit deinen Echo s nur deinen Text ausgiebst.. und keine html Syntax. Da klappen dann auch keine Stylesheets.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: derSESO		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-74</link>

		<dc:creator><![CDATA[derSESO]]></dc:creator>
		<pubDate>Thu, 23 Jun 2022 08:07:44 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-74</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-68&quot;&gt;Doberfrau&lt;/a&gt;.

Hallo,
gibt es eine Lösung dafür?
habe auch einen Tabellenkopf über zwei Zeilen und die zweite Zeile mag er nicht. :(]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-68">Doberfrau</a>.</p>
<p>Hallo,<br />
gibt es eine Lösung dafür?<br />
habe auch einen Tabellenkopf über zwei Zeilen und die zweite Zeile mag er nicht. 🙁</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: admin		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-73</link>

		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 02 Jun 2022 09:55:17 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-73</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-72&quot;&gt;Rollo&lt;/a&gt;.

Hey Rollo,

was soll ich dir sagen ohne deinen Code zu sehen. In meinem Beispiel funktioniert es. Schreib mir eine E-Mail. Vielleicht kann ich dir helfen.

LG Oli]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-72">Rollo</a>.</p>
<p>Hey Rollo,</p>
<p>was soll ich dir sagen ohne deinen Code zu sehen. In meinem Beispiel funktioniert es. Schreib mir eine E-Mail. Vielleicht kann ich dir helfen.</p>
<p>LG Oli</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Rollo		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-72</link>

		<dc:creator><![CDATA[Rollo]]></dc:creator>
		<pubDate>Fri, 20 May 2022 18:05:41 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-72</guid>

					<description><![CDATA[Hallo,
ich habe das Beispiel ausprobiert, aber ohne Erfolg. Wie auch schon vorher dutzend andere.
Ich bekomme es einfach nicht hin, dass der Tabellenkopf fest steht und nur der Inhalt scrollt.
Hier ist einmal der Auszug Stylesheet und die Tabellenerzeugung.
Hat jemand noch eine Idee, warum das nicht funktioniert?

Mein Code:
echo &quot;“;
div.wrapper {
	padding: 20px;
	display: block;
	overflow: auto;
}
table.scroll {
	width: 100%;
	background-color: #fff;
}
table.scroll thead {
	width: 100%;
	background: #5dd39e;
}
table.scroll thead tr:after {
	content: &#039;&#039;;
	overflow-y: scroll;
	visibility: hidden;
}
table.scroll thead th {
	flex: 1 auto;
	display: block;
	color: #fff;
}
table.scroll tbody {
	display: block;
	width: 100%;
	overflow-y: auto;
	height: auto;
	max-height: 200px;
}
table.scroll thead tr,
table.scroll tbody tr {
	display: flex;
}
table.scroll tbody tr td {
	flex: 1 auto;
	word-wrap: break;
}
table.scroll thead tr th,
table.scroll tbody tr td {
	width: 25%;
	padding: 5px;
	text-align-left;
	border-bottom: 1px solid #eee;
}
  &quot;;


//      ---------------------------------------------------
//        Ausgabe-Tabelle wenn Datens&#228;tze vorhanden
//      ---------------------------------------------------
     if ($row_cnt &#062; 0)  {
         echo &quot;&quot;;
        echo &quot;&quot;;
         echo &quot;&quot;;
         echo &quot;&quot;;
         echo &quot;&quot;;
         printf(&quot;Folgende %d Einträge wurden gefunden\n&quot;, $row_cnt);
         if (!(Empty($suchinterpret)) And (Empty($suchalbum)) )
          {
            echo &quot;für Interpret: &quot; . $sinterpret . &quot;&quot;;
          }
         if (!(Empty($suchalbum)) And (Empty($suchinterpret)) )
          {
            echo &quot;für Album: &quot;, $stitel, &quot;&quot;;
          }
         if (!(Empty($suchinterpret)) And !(Empty($suchalbum)) )
          {
            echo &quot;für Interpret: &quot;, $sinterpret, &quot;&quot;;
            echo &quot;und Album: &quot;, $salbum, &quot;&quot;;
          }
         echo &quot;&quot;;
         echo &quot;&quot;;
         echo &quot;&quot;;
         echo &quot;&lt;b&gt;Interpret&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Album&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Anzahl&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Medium&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Cover&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Label&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Best-Nr&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Abgeben&lt;/b&gt;&quot;;
         echo &quot;&lt;b&gt;Aktion&lt;/b&gt;&quot;;
         echo &quot;&quot;;
          echo &quot;&quot;;
           echo &quot;&quot;;
//     -----------------------
//      Ausgabe-Tabelle Daten
//     -----------------------


        while ($row = mysqli_fetch_object ($result))
         {
           echo &quot;&quot;;
           $row-&#062;Interpret = htmlentities($row-&#062;Interpret);
           if  (empty($row-&#062;Interpret)) $row-&#062;Interpret = &quot;&quot;;
		   echo &quot;&quot;, $row-&#062;Interpret, &quot;&quot;;
           if  (empty($row-&#062;Album)) $row-&#062;Album = &quot;&quot;;
           echo &quot;&quot;, $row-&#062;Album,     &quot;&quot;;
           if (empty($row-&#062;Anzahl)) $row-&#062;Anzahl = &quot;&quot;;
           echo &quot;&quot;, $row-&#062;Anzahl,    &quot;&quot;;
           if (empty($row-&#062;Medium)) $row-&#062;Medium = &quot;&quot;;
           echo &quot;&quot;, $row-&#062;Medium,    &quot;&quot;;
           if (empty($row-&#062;Cover)) $row-&#062;Cover = &quot;&quot;;
           echo &quot;&quot;, $row-&#062;Cover,     &quot;&quot;;
           if (empty($row-&#062;Label)) $row-&#062;Label = &quot;&quot;;
           echo &quot;&quot;, $row-&#062;Label,     &quot;&quot;;
           if (empty($row-&#062;BestNr)) $row-&#062;BestNr = &quot;&quot;;
           echo &quot;&quot;, $row-&#062;BestNr,    &quot;&quot;;
           if (empty($row-&#062;Abgeben)) $row-&#062;Abgeben = &quot;&quot;;
           echo &quot;&quot;, $row-&#062;Abgeben,    &quot;&quot;;
           echo &quot;



                                Cover&#062;
                              Album&#062;



	      &quot;;
	echo &quot;&quot;;
         }
       echo &quot;&quot;;
       echo &quot;&quot;;
      echo &quot;&quot;;]]></description>
			<content:encoded><![CDATA[<p>Hallo,<br />
ich habe das Beispiel ausprobiert, aber ohne Erfolg. Wie auch schon vorher dutzend andere.<br />
Ich bekomme es einfach nicht hin, dass der Tabellenkopf fest steht und nur der Inhalt scrollt.<br />
Hier ist einmal der Auszug Stylesheet und die Tabellenerzeugung.<br />
Hat jemand noch eine Idee, warum das nicht funktioniert?</p>
<p>Mein Code:<br />
echo &#8222;“;<br />
div.wrapper {<br />
	padding: 20px;<br />
	display: block;<br />
	overflow: auto;<br />
}<br />
table.scroll {<br />
	width: 100%;<br />
	background-color: #fff;<br />
}<br />
table.scroll thead {<br />
	width: 100%;<br />
	background: #5dd39e;<br />
}<br />
table.scroll thead tr:after {<br />
	content: &#8220;;<br />
	overflow-y: scroll;<br />
	visibility: hidden;<br />
}<br />
table.scroll thead th {<br />
	flex: 1 auto;<br />
	display: block;<br />
	color: #fff;<br />
}<br />
table.scroll tbody {<br />
	display: block;<br />
	width: 100%;<br />
	overflow-y: auto;<br />
	height: auto;<br />
	max-height: 200px;<br />
}<br />
table.scroll thead tr,<br />
table.scroll tbody tr {<br />
	display: flex;<br />
}<br />
table.scroll tbody tr td {<br />
	flex: 1 auto;<br />
	word-wrap: break;<br />
}<br />
table.scroll thead tr th,<br />
table.scroll tbody tr td {<br />
	width: 25%;<br />
	padding: 5px;<br />
	text-align-left;<br />
	border-bottom: 1px solid #eee;<br />
}<br />
  &#8222;;</p>
<p>//      &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
//        Ausgabe-Tabelle wenn Datens&auml;tze vorhanden<br />
//      &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
     if ($row_cnt &gt; 0)  {<br />
         echo &#8222;&#8220;;<br />
        echo &#8222;&#8220;;<br />
         echo &#8222;&#8220;;<br />
         echo &#8222;&#8220;;<br />
         echo &#8222;&#8220;;<br />
         printf(&#8222;Folgende %d Einträge wurden gefunden\n&#8220;, $row_cnt);<br />
         if (!(Empty($suchinterpret)) And (Empty($suchalbum)) )<br />
          {<br />
            echo &#8222;für Interpret: &#8220; . $sinterpret . &#8222;&#8220;;<br />
          }<br />
         if (!(Empty($suchalbum)) And (Empty($suchinterpret)) )<br />
          {<br />
            echo &#8222;für Album: &#8222;, $stitel, &#8222;&#8220;;<br />
          }<br />
         if (!(Empty($suchinterpret)) And !(Empty($suchalbum)) )<br />
          {<br />
            echo &#8222;für Interpret: &#8222;, $sinterpret, &#8222;&#8220;;<br />
            echo &#8222;und Album: &#8222;, $salbum, &#8222;&#8220;;<br />
          }<br />
         echo &#8222;&#8220;;<br />
         echo &#8222;&#8220;;<br />
         echo &#8222;&#8220;;<br />
         echo &#8222;<b>Interpret</b>&#8222;;<br />
         echo &#8222;<b>Album</b>&#8222;;<br />
         echo &#8222;<b>Anzahl</b>&#8222;;<br />
         echo &#8222;<b>Medium</b>&#8222;;<br />
         echo &#8222;<b>Cover</b>&#8222;;<br />
         echo &#8222;<b>Label</b>&#8222;;<br />
         echo &#8222;<b>Best-Nr</b>&#8222;;<br />
         echo &#8222;<b>Abgeben</b>&#8222;;<br />
         echo &#8222;<b>Aktion</b>&#8222;;<br />
         echo &#8222;&#8220;;<br />
          echo &#8222;&#8220;;<br />
           echo &#8222;&#8220;;<br />
//     &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
//      Ausgabe-Tabelle Daten<br />
//     &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>        while ($row = mysqli_fetch_object ($result))<br />
         {<br />
           echo &#8222;&#8220;;<br />
           $row-&gt;Interpret = htmlentities($row-&gt;Interpret);<br />
           if  (empty($row-&gt;Interpret)) $row-&gt;Interpret = &#8222;&#8220;;<br />
		   echo &#8222;&#8220;, $row-&gt;Interpret, &#8222;&#8220;;<br />
           if  (empty($row-&gt;Album)) $row-&gt;Album = &#8222;&#8220;;<br />
           echo &#8222;&#8220;, $row-&gt;Album,     &#8222;&#8220;;<br />
           if (empty($row-&gt;Anzahl)) $row-&gt;Anzahl = &#8222;&#8220;;<br />
           echo &#8222;&#8220;, $row-&gt;Anzahl,    &#8222;&#8220;;<br />
           if (empty($row-&gt;Medium)) $row-&gt;Medium = &#8222;&#8220;;<br />
           echo &#8222;&#8220;, $row-&gt;Medium,    &#8222;&#8220;;<br />
           if (empty($row-&gt;Cover)) $row-&gt;Cover = &#8222;&#8220;;<br />
           echo &#8222;&#8220;, $row-&gt;Cover,     &#8222;&#8220;;<br />
           if (empty($row-&gt;Label)) $row-&gt;Label = &#8222;&#8220;;<br />
           echo &#8222;&#8220;, $row-&gt;Label,     &#8222;&#8220;;<br />
           if (empty($row-&gt;BestNr)) $row-&gt;BestNr = &#8222;&#8220;;<br />
           echo &#8222;&#8220;, $row-&gt;BestNr,    &#8222;&#8220;;<br />
           if (empty($row-&gt;Abgeben)) $row-&gt;Abgeben = &#8222;&#8220;;<br />
           echo &#8222;&#8220;, $row-&gt;Abgeben,    &#8222;&#8220;;<br />
           echo &#8220;</p>
<p>                                Cover&gt;<br />
                              Album&gt;</p>
<p>	      &#8222;;<br />
	echo &#8222;&#8220;;<br />
         }<br />
       echo &#8222;&#8220;;<br />
       echo &#8222;&#8220;;<br />
      echo &#8222;&#8220;;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: rahrens@t-online.de		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-71</link>

		<dc:creator><![CDATA[rahrens@t-online.de]]></dc:creator>
		<pubDate>Wed, 18 May 2022 17:13:39 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-71</guid>

					<description><![CDATA[Ich bekomme die Umsetzung auf mein Beispiel nicht zum Laufen.
Ich habe eine Musiktabelle mit mehreren Tausend  Einträgen.
Die nachfolgenden Beiden Zeilen sind der Kopf, der beim Scrollen stehen bleiben soll.
Ich habe schon diverse Einträge aus verschiedenen Foren probiert, aber immer mit dem Erfolg, dass die Ganze Tabelle incl Kopf scrollt.

Folgende 800 Einträge wurden gefunden für Interpret: Barber
Interpret	Album	Anzahl	Medium	Cover	Label	Best-Nr	Abgeben	Aktion

Über Hilfe, würde ich mich sehr freuen, da ich langsam nicht mehr weiter weiss.

Mfg rahrens@t-online.de]]></description>
			<content:encoded><![CDATA[<p>Ich bekomme die Umsetzung auf mein Beispiel nicht zum Laufen.<br />
Ich habe eine Musiktabelle mit mehreren Tausend  Einträgen.<br />
Die nachfolgenden Beiden Zeilen sind der Kopf, der beim Scrollen stehen bleiben soll.<br />
Ich habe schon diverse Einträge aus verschiedenen Foren probiert, aber immer mit dem Erfolg, dass die Ganze Tabelle incl Kopf scrollt.</p>
<p>Folgende 800 Einträge wurden gefunden für Interpret: Barber<br />
Interpret	Album	Anzahl	Medium	Cover	Label	Best-Nr	Abgeben	Aktion</p>
<p>Über Hilfe, würde ich mich sehr freuen, da ich langsam nicht mehr weiter weiss.</p>
<p>Mfg <a href="mailto:rahrens@t-online.de">rahrens@t-online.de</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: admin		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-70</link>

		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 18 May 2022 08:07:28 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-70</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-69&quot;&gt;sedistok&lt;/a&gt;.

Hey sedistok,

und dennoch haben Tabellen Ihre Daseinsberechtigungen und anscheinend hast du meinen Beitrag ja irgendwie gefunden ;)

LG Oli]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-69">sedistok</a>.</p>
<p>Hey sedistok,</p>
<p>und dennoch haben Tabellen Ihre Daseinsberechtigungen und anscheinend hast du meinen Beitrag ja irgendwie gefunden 😉</p>
<p>LG Oli</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: sedistok		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-69</link>

		<dc:creator><![CDATA[sedistok]]></dc:creator>
		<pubDate>Tue, 17 May 2022 16:42:25 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-69</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-68&quot;&gt;Doberfrau&lt;/a&gt;.

. . . bekannter Softwareentwickler-Spruch: &quot;we are proud to be, completely Table-Free&quot;.
 Gemeint ist: &quot;tables&quot; sind etwas für html-Frickler, nichts für Programmierer.]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-68">Doberfrau</a>.</p>
<p>. . . bekannter Softwareentwickler-Spruch: &#8222;we are proud to be, completely Table-Free&#8220;.<br />
 Gemeint ist: &#8222;tables&#8220; sind etwas für html-Frickler, nichts für Programmierer.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: Doberfrau		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-68</link>

		<dc:creator><![CDATA[Doberfrau]]></dc:creator>
		<pubDate>Wed, 22 Jul 2020 09:10:48 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-68</guid>

					<description><![CDATA[Funktioniert ausgezeichnet, solange man nicht mit colspan oder rowspan arbeiten muss – dann zerschießt es erwartungsgemäß wieder alles. Wie einfach wäre es, wenn mit HTML5 endlich das schon seit ewigen Zeiten angeforderte Attribut für thead umgesetzt wäre, mit dem man den Header einer Tabelle fixieren könnte, unabhängig davon, wie man den Body aufbaut. Tabellenkalkulationen zeigen seit inzwischen mehr als 25 Jahren, dass das geht ...]]></description>
			<content:encoded><![CDATA[<p>Funktioniert ausgezeichnet, solange man nicht mit colspan oder rowspan arbeiten muss – dann zerschießt es erwartungsgemäß wieder alles. Wie einfach wäre es, wenn mit HTML5 endlich das schon seit ewigen Zeiten angeforderte Attribut für thead umgesetzt wäre, mit dem man den Header einer Tabelle fixieren könnte, unabhängig davon, wie man den Body aufbaut. Tabellenkalkulationen zeigen seit inzwischen mehr als 25 Jahren, dass das geht &#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: JOSE H		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-67</link>

		<dc:creator><![CDATA[JOSE H]]></dc:creator>
		<pubDate>Wed, 09 Oct 2019 20:31:23 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-67</guid>

					<description><![CDATA[Spanisch (Original): Agregar esta seccion al CSS para que el texto no se desborde de las columnas

&lt;i&gt;Deutsch (Übersetzung): Fügen Sie diesen Abschnitt zum CSS hinzu, damit der Text nicht aus den Spalten überläuft.&lt;/i&gt;

table.fixed_header{
	-ms-word-break: break-all;
	word-break: break-all;
	word-break: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}]]></description>
			<content:encoded><![CDATA[<p>Spanisch (Original): Agregar esta seccion al CSS para que el texto no se desborde de las columnas</p>
<p><i>Deutsch (Übersetzung): Fügen Sie diesen Abschnitt zum CSS hinzu, damit der Text nicht aus den Spalten überläuft.</i></p>
<p>table.fixed_header{<br />
	-ms-word-break: break-all;<br />
	word-break: break-all;<br />
	word-break: break-word;<br />
	-webkit-hyphens: auto;<br />
	-moz-hyphens: auto;<br />
	-ms-hyphens: auto;<br />
	hyphens: auto;<br />
}</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		Von: admin		</title>
		<link>https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-66</link>

		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 19 Sep 2019 13:48:09 +0000</pubDate>
		<guid isPermaLink="false">https://www.revilodesign.de/?p=1147#comment-66</guid>

					<description><![CDATA[Als Antwort auf &lt;a href=&quot;https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-65&quot;&gt;Claus&lt;/a&gt;.

Hi Claus,

danke für dein Kommentar &amp; deine Anregung. Ich habe deine Anmerkungen in meinem obigen Beispiel hinzugefügt.

Lg Oli]]></description>
			<content:encoded><![CDATA[<p>Als Antwort auf <a href="https://www.revilodesign.de/blog/css-tricks/css-table-header-fixed-thead-einer-tabelle-fixieren/#comment-65">Claus</a>.</p>
<p>Hi Claus,</p>
<p>danke für dein Kommentar &#038; deine Anregung. Ich habe deine Anmerkungen in meinem obigen Beispiel hinzugefügt.</p>
<p>Lg Oli</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
