Inhaltsverzeichnis
实例" >实例
Heim Web-Frontend HTML-Tutorial Detaillierte Einführung in den HTML-Absatz Tag

Detaillierte Einführung in den HTML-Absatz Tag

Jul 03, 2017 am 11:46 AM
html 介绍 详细

-Tag definiert einen Absatz. Das

p-Element erstellt automatisch etwas Leerraum davor und danach. Der Browser fügt diese Leerzeichen automatisch hinzu, oder Sie können sie in Ihrem Stylesheet angeben.

Absatzabstand
IE ist standardmäßig auf 19 Pixel eingestellt, über das Attribut margin-top von p Setzen Sie
FF standardmäßig auf 1,12em und stellen Sie p so ein, dass die Anzeige standardmäßig über das Attribut
margin-bottom von p blockiert wird. Um den Absatzabstand zu löschen, können Sie im Allgemeinen

p {
   margin-top:0;
   margin-bottom:0;
}
Nach dem Login kopieren


< festlegen 🎜>

Weiterführende Literatur: Zulässige Absatzverwendungen

Sie können Absätze nur innerhalb von Blöcken angeben oder Absätze mit anderen Absätzen, Listen, Formularen und vorformatiertem Text verwenden. Im Allgemeinen bedeutet dies, dass Absätze überall dort erscheinen können, wo ein geeigneter Textfluss vorhanden ist, beispielsweise im Hauptteil des Dokuments, innerhalb von Listenelementen usw.

Aus technischer Sicht können Absätze nicht in Überschriften, Ankern oder anderen Stellen angezeigt werden, an denen der Inhalt unbedingt nur aus Text bestehen muss. Tatsächlich ignorieren die meisten Browser diese Einschränkung und formatieren Absätze als Teil des Inhalts des enthaltenden Elements.

<html>
<body>
<p>这是段落。</p>
<p>这是段落。</p>
<p>这是段落。</p>
<p>段落元素由 p 标签定义。</p> 
</body>
</html>
Nach dem Login kopieren

In HTML kann das p-Tag nicht in das P-Tag< eingefügt werden 🎜>

Eingehendes Studium:

Lassen Sie uns zunächst Inline-Inline-Elemente und Block kennenlernen -line-Blockelemente, da fast alle Elemente in HTML entweder Inline-Elemente oder Blockelemente sind.

Das Wort Inline hat viele Interpretationen: Inline, Inline, Inline, Line-Level usw., aber sie bedeuten alle dasselbe , hier wählen wir den üblichen Namen – inline.

Sie können den Unterschied anhand des folgenden Beispiels verstehen:

Der Unterschied zwischen Inline-Elementen

;/p>Der Unterschied zwischen

und Inline-Elementen

Der Effekt lautet wie folgt:

Im obigen Beispiel generiert

selbst eine neue Zeile , während nicht umbricht. Das ist alles. Ebenso können wir p als Inline-Element und Span als Blockelement definieren Elemente können Inline-Elemente oder bestimmte Blockelemente enthalten (Das obige Beispiel ist eigentlich eine falsche Verwendung --->ich habe

in

eingefügt),

aber Inline-Elemente können keine Blockelemente enthalten, sie können nur andere Inline-Elemente enthalten. Schauen Sie sich das noch einmal an:

<h2>我喜欢在
<a href="
http://bbs.blueidea.com/
 " >经典论坛</a>
讨论Web标准的原因。</h2>
Nach dem Login kopieren

wobei < ;h2> gehört zum Blockelement und ist nicht falsch, wenn

enthalten ist ; enthält Es ist auch richtig, aber es ist falsch, wenn es wie folgt aussieht, da Inline-Elemente keine Blockelemente enthalten sollten:

Es gibt auch Fälle, in denen einige Blockelemente keine anderen Blockelemente enthalten können. Zum Beispiel:

而这样又是可以的。


为什么呢?因为我们使用的DTD中规定了块级元素是不能放在

里面的,再加上一些浏览器纵容这样的写法:


当一个

签还没结束时,遇到下一个块元素就会把自己结束掉,其实浏览器是把它们处理成这样:


所以刚才那样的写法会变成这样:


这也是跟刚才说第一个例子中

里面放

不合理是同一个道理。

那哪些块元素里面不能放哪些块元素呢?我知道你有这个疑问,也知道我仅仅列一张清单你不好记住它们。我们可以先把所有的块元素再次划分成几个级别的,我们已经知道是在最外层,下一级里面只会有、、、,而我们已经知道了可视的元素只会出现在<body>里,所以我们把<body>划在第一个级里面,接着,把不可以自由嵌套的元素划在第三个级,其他的就归进第二个级。</span></p><p><span style="font-size: 13px; color: #000000;"> </span><span style="font-size: 13px; color: #ff00ff;">所谓的不可自由嵌套的元素就是里面只能放内联元素的,它们包括有:标题标记的<h1>、<h2>、<h3>、<h4>、<h5>、<h6>、<caption>;段落标记的<p>;分隔线<hr>和一个特别的元素<dt>(它只存在于列表元素<dl>的子一级)。</span></p><p><span style="font-size: 13px; color: #000000;"> 为什么说第二级的元素可以自由嵌套呢?我们可以把它们看成是一些容器(或者说是盒子), 这些容器的大小可以自由变化,例如我们可以把<ul>嵌在<p>里面,也可以把<p>嵌在<li>里面。</span></p><p><span style="font-size: 13px; color: #ff00ff;"> 在HTML里有几个元素是比较特别的:<ul>、<ol>、<dl>、<table>,它们的子一层必须是指定元素,<ul>、<ol>的子一级必须是<li>;<dl>的子一级必须是<dt>或者<dd>;<table>的子一层必须是<caption> 或<thead>、<tfoot>、<tbody>等,而再子一层必须是<tr> (<tr>只存在于<thead>、<tfoot>、<tbody>中),之后才是可放内容的<td>或者<th>。</span></p><p><span style="font-size: 13px; color: #000000;"> 很多人在W3C校验无法通过也是这个原因-->错误的元素嵌套,然而把提示错误的标签改成<p>或者<span>就可以通过,但是我们不能这样盲目的为了校验而校验,<p>也不是神,<p>代替不了语义化的标签。</span></p><p><span style="font-size: 13px; color: #3366ff;">下面有一张关于(X)HTML Strict下嵌套规则的图,可以参考:</span></p><p><span style="font-size: 13px; color: #3366ff;"><img src="/static/imghw/default1.png" data-src="https://img.php.cn/upload/article/000/000/194/dcdc175b325f9938b05ae8b1a8720602-1.jpg" class="lazy" alt=""/></span></p><p> </p><p><span style="max-width:90%">其实在内联元素中,还是可以再区分一下的,有几个元素(<img>、<input>等)比较特别,它们可以定义宽高。虽然在IE 浏览器里,所有的元素都可以定义宽高,但这是IE自己的标准,并非所有浏览器都支持,W3C称它们为replaced元素,我也找不到适合翻译的词,它们在属于in-line的情况下同样具有block-line的一些特性,在"dasplay:inline-block的应用"中所说的inline-block其实就是让其他元素也模拟成replaced元素,你暂时也不用过多了解,等到后面再学习它。</span></p><p><span style="font-size: 15px;"><strong><p> 标签支持 HTML 中的<a href="http://www.php.cn/code/5845.html" target="_blank">全局属性</a>。</strong></span></p><p><span style="font-size: 15px;"><span style="background-color: #ff0000;"> <span style="color: #ffffff;">5</span> </span>= HTML5 中添加的属性。</span></p><table style="width: 1259px; height: 2161px;" border="1" align="left"><tbody><tr class="firstRow"><td style="text-align: left;"><span style="font-size: 13px;">属性</span></td><td style="text-align: left;"><span style="font-size: 13px;">值</span></td><td><span style="font-size: 13px;">描述</span></td><td><span style="font-size: 13px;">例子</span></td><td><span style="font-size: 13px;">浏览器支持</span></td></tr><tr><td><span style="font-size: 13px;">class</span></td><td><span style="color: #ff00ff; font-size: 13px;">classname</span></td><td><span style="font-size: 13px;">规定元素的一个或多个类名(引用样式表中的类)</span></td><td><span style="font-size: 13px;"><p <span style="color: #ff00ff;">class="ab"</span>></p></span></td><td><span style="font-size: 13px;">所有浏览器都支持。</span></td></tr><tr style="background-color: #f4f4f4;"><td><span style="font-size: 13px;">contenteditable <span style="background-color: #ff0000;"> <strong><span style="color: #ffffff;">5</span></strong> </span></span></td><td><p><span style="font-size: 13px;"><span style="color: #ff00ff;">true</span>(可编辑)</span></p><p><span style="font-size: 13px;"><span style="color: #ff00ff;">false</span>(不可编辑)</span></p></td><td><span style="font-size: 13px;">规定元素内容是否可编辑</span></td><td><span style="font-size: 13px;"><p <span style="color: #ff00ff;">contenteditable="true"</span>>这是一个可编辑的段落。</p></span></td><td><span style="font-size: 13px;">所有主流浏览器都支持。</span></td></tr><tr><td><span style="font-size: 13px;">contextmenu <span style="background-color: #ff0000;"> <span style="color: #ffffff;">5 </span></span></span></td><td><span style="font-size: 13px;"><span style="color: #ff00ff;">menu_id</span>(要打开的 <menu> 元素的 id。)</span></td><td><span style="font-size: 13px;">规定元素的上下文菜单。上下文菜单在用户点击元素时显示。</span></td><td><p><span style="font-size: 13px;"><p <span style="color: #ff00ff;">contextmenu="supermenu"</span>>本段落拥有一个名为 "supermenu" 的上下文菜单。这个菜单会在用户右键单击该段落时出现。</p></span></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;menu id=&quot;supermenu&quot;&gt; &lt;command label=&quot;Step 1: Write Tutorial&quot; onclick=&quot;doSomething()&quot;&gt; &lt;command label=&quot;Step 2: Edit Tutorial&quot; onclick=&quot;doSomethingElse()&quot;&gt; &lt;/menu&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div><p><span style="font-size: 13px;"></span><br/></p></td><td><span style="font-size: 13px;">目前只有 Firefox 支持 contextmenu 属性。</span></td></tr><tr style="background-color: #f4f4f4;"><td><span style="font-size: 13px;">data-* <span style="background-color: #ff0000;"> <span style="color: #ffffff;">5 </span></span></span></td><td><span style="font-size: 13px;"><span style="color: #ff00ff;">somevalue</span> (规定属性的值(以字符串)。)</span></td><td><p><span style="font-size: 13px;">data-* 属性用于存储页面或应用程序的私有自定义数据。</span></p><p><span style="font-size: 13px;">data-* 属性赋予我们在所有 HTML 元素上嵌入自定义 data 属性的能力。</span></p><p><span style="font-size: 13px;">存储的(自定义)数据能够被页面的 JavaScript 中利用,以创建更好的用户体验(不进行 Ajax 调用或服务器端数据库查询)。</span></p><p><span style="font-size: 13px;">data-* 属性包括两部分:</span></p><ul class=" list-paddingleft-2"><li><p><span style="font-size: 13px;">属性名不应该包含任何大写字母,并且在前缀 "data-" 之后必须有至少一个字符</span></p></li><li><p><span style="font-size: 13px;">属性值可以是任意字符串</span></p></li></ul><p class="note"><span style="font-size: 13px;">注释:用户代理会完全忽略前缀为 "data-" 的自定义属性。</span></p></td><td><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p id=&quot;test&quot; data-age=&quot;24&quot;&gt; Click Here &lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div></td><td><span style="font-size: 13px;">所有主流浏览器都支持 data-* 属性。</span></td></tr><tr><td><span style="font-size: 13px;">dir</span></td><td><p><span style="font-size: 13px;"><span style="color: #ff00ff;">ltr</span> (默认。从左向右 的文本方向。</span></p><p><span style="font-size: 13px;"><span style="color: #ff00ff;">rtl</span> (从右到左的文本方向。)</span></p></td><td><span style="font-size: 13px;">规定元素中内容的文本方向。</span></td><td><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p dir=&quot;rtl&quot; &gt;Write this text right-to-left!&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div><span style="font-size: 13px;"></span></td><td><span style="font-size: 13px;">所有浏览器均支持 dir 属性。</span></td></tr><tr style="background-color: #f4f4f4;"><td><span style="font-size: 13px;">draggable <span style="background-color: #ff0000;"><span style="color: #ffffff;"> 5</span> </span></span></td><td><p><span style="font-size: 13px;"><span style="color: #ff00ff;">true</span> (规定元素的可拖动的。)</span></p><p><span style="font-size: 13px;"><span style="color: #ff00ff;">false</span> (规定元素不可拖动。)</span></p><p><span style="font-size: 13px;"><span style="color: #ff00ff;">auto</span> (使用浏览器的默认行为。)</span></p></td><td><p><span style="font-size: 13px;">draggable 属性规定元素是否可拖动。</span></p><p class="tip"><span style="font-size: 13px;"><span style="color: #ff0000;">提示:</span>链接和图像默认是可拖动的。</span></p></td><td><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p draggable=&quot;true&quot;&gt;这是一个可拖动的段落。&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div></td><td><p><span style="font-size: 13px;">Internet Explorer 9+, Firefox, Opera, Chrome, and Safari 支持 draggable 属性。</span></p><p><span style="font-size: 13px;"><strong>注释:</strong>Internet Explorer 8 以及更早的版本,不支持 draggable 属性。</span></p></td></tr><tr><td><span style="font-size: 13px;">dropzone <span style="background-color: #ff0000;"> <span style="color: #ffffff;">5</span> </span></span></td><td><p><span style="font-size: 13px;"><span style="color: #ff00ff;">copy</span> (拖动数据会产生被拖动数据的副本。)</span></p><p><span style="font-size: 13px;"><span style="color: #ff00ff;">move</span> (拖动数据会导致被拖动数据被移动到新位置。)</span></p><p><span style="font-size: 13px;"><span style="color: #ff00ff;">link</span> (拖动数据会产生指向原始数据的链接。) </span></p></td><td><span style="font-size: 13px;">dropzone 属性规定在元素上拖动数据时,是否拷贝、移动或链接被拖动数据。</span></td><td><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p dropzone=&quot;copy&quot;&gt;&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div></td><td><span style="font-size: 13px;">目前所有主流浏览器都不支持 contenteditable 属性。</span></td></tr><tr style="background-color: #f4f4f4;"><td><span style="font-size: 13px;">hidden <span style="color: #ffffff; background-color: #ff0000;"> 5 </span></span></td><td><span style="font-size: 13px;"> </span></td><td><p><span style="font-size: 13px;">hidden 属性是布尔属性。</span></p><p><span style="font-size: 13px;">如果设置该属性,它规定元素仍未或不再相关。</span></p><p><span style="font-size: 13px;">浏览器不应显示已规定 hidden 属性的元素。</span></p><p><span style="font-size: 13px;">hidden 属性也可用于防止用户查看元素,直到匹配某些条件(比如选择了某个复选框)。然后,JavaScript 可以删除 hidden 属性,以使此元素可见。</span></p></td><td><span style="font-size: 13px;"><p <span style="color: #ff00ff;">hidden="hidden"</span>>这是一段隐藏的段落。</p></span></td><td><span style="font-size: 13px;">所有主流浏览器都支持 hidden 属性,除了 Internet Explorer。</span></td></tr><tr><td><span style="font-size: 13px;">id</span></td><td><span style="color: #ff00ff; font-size: 13px;">idname</span></td><td><p><span style="font-size: 13px;">id 属性规定 HTML 元素的唯一的 id。</span></p><p><span style="font-size: 13px;">id 在 HTML 文档中必须是唯一的。</span></p><p><span style="font-size: 13px;">id 属性可用作链接锚(link anchor),通过 JavaScript(HTML DOM)或通过 CSS 为带有指定 id 的元素改变或添加样式。</span></p></td><td><span style="font-size: 13px;"><p <span style="color: #ff00ff;">id="ab"</span>></p></span></td><td><span style="font-size: 13px;">所有浏览器都支持。</span></td></tr><tr style="background-color: #f4f4f4;"><td><span style="font-size: 13px;">lang</span></td><td><span style="font-size: 13px;"><span style="color: #ff00ff;">language_code</span> (规定元素内容的语言代码。)</span></td><td><span style="font-size: 13px;">lang 属性规定元素内容的语言。</span></td><td><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p lang=&quot;fr&quot;&gt;Ceci est un paragraphe.&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div></td><td><span style="font-size: 13px;">所有浏览器均支持 lang 属性。</span></td></tr><tr><td><span style="font-size: 13px;">spellcheck <span style="color: #ffffff; background-color: #ff0000;"> 5 </span></span></td><td><p><span style="font-size: 13px;"><span style="color: #ff00ff;">true</span> (对元素进行拼写和语法检查.)</span></p><p><span style="font-size: 13px;"><span style="color: #ff00ff;">false</span> (不检查元素。)</span></p></td><td><p><span style="font-size: 13px;">spellcheck 属性规定是否对元素进行拼写和语法检查。</span></p><p><span style="font-size: 13px;">可以对以下内容进行拼写检查:</span></p><ul class=" list-paddingleft-2"><li><p><span style="font-size: 13px;">input 元素中的文本值(非密码)</span></p></li><li><p><span style="font-size: 13px;"><textarea> 元素中的文本</span></p></li><li><p><span style="font-size: 13px;">可编辑元素中的文本</span></p></li></ul></td><td><h2 id="span-style-font-size-px-实例-span"><span style="font-size: 13px;">实例</span></h2><p><span style="font-size: 13px;">进行拼写检查的可编辑段落:</span></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p contenteditable=&quot;true&quot; spellcheck=&quot;true&quot;&gt;这是一个段落。&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div></td><td><span style="font-size: 13px;"> </span><p><span style="font-size: 13px;">Internet Explorer 10, Firefox, Opera, Chrome 以及 Safari 支持 spellcheck 属性。</span></p><p class="note"><span style="font-size: 13px;"><strong>注释:</strong>Internet Explorer 9 以及更早的版本不支持 spellcheck 属性。</span></p></td></tr><tr style="background-color: #f4f4f4;"><td><span style="font-size: 13px;"> style</span></td><td><span style="font-size: 13px;"> <span style="color: #ff00ff;">style_definition</span> (一个或多个由分号分隔的 CSS 属性和值。)</span></td><td><span style="font-size: 13px;"> </span><p><span style="font-size: 13px;">style 属性规定元素的行内样式(inline style)</span></p><p><span style="font-size: 13px;">style 属性将覆盖任何全局的样式设定,例如在 <style> 标签或在外部样式表中规定的样式。</span></p></td><td><span style="font-size: 13px;"> </span><h2 id="span-style-font-size-px-实例-span"><span style="font-size: 13px;">实例</span></h2><p><span style="font-size: 13px;">在 HTML 文档中使用 style 属性:</span></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p style=&quot;color:red&quot;&gt;This is a paragraph.&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div></td><td><span style="font-size: 13px;"> 所有浏览器都支持。</span></td></tr><tr><td><span style="font-size: 13px;"> title</span></td><td><span style="font-size: 13px;"> <span style="color: #ff00ff;">text</span> (规定元素的<a href="http://www.php.cn/code/6156.html" target="_blank">工具提示</a>文本(tooltip text)。)</span></td><td><span style="font-size: 13px;"> </span><p><span style="font-size: 13px;">title 属性规定关于元素的额外信息。</span></p><p><span style="font-size: 13px;">这些信息通常会在鼠标移到元素上时显示一段工具提示文本(tooltip text)。</span></p><p class="tip"><span style="font-size: 13px;"><strong>提示:</strong>title 属性常与 form 以及 a 元素一同使用,以提供关于输入格式和链接目标的信息。同时它也是 abbr 和 acronym 元素的必需属性。</span></p></td><td><span style="font-size: 13px;"> </span><h2 id="span-style-font-size-px-实例-span"><span style="font-size: 13px;">实例</span></h2><p><span style="font-size: 13px;">在 HTML 文档中使用 title 属性:</span></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p title=&quot;Free Web tutorials&quot;&gt;W3School.com.cn&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div></td><td><span style="font-size: 13px;"> 所有浏览器都支持。</span></td></tr><tr style="background-color: #f4f4f4;"><td><span style="font-size: 13px;"> translate <span style="color: #ffffff;"> <span style="background-color: #ff0000;">5 </span></span></span></td><td><p><span style="font-size: 13px;"> <span style="color: #ff00ff;">yes</span> (规定应该翻译元素内容。)</span></p><p><span style="font-size: 13px;"> <span style="color: #ff00ff;">no</span> (规定不应翻译元素内容。)</span></p></td><td><span style="font-size: 13px;"> </span><p><span style="font-size: 13px;">translate 规定是否应该翻译元素内容。</span></p><p class="tip"><span style="font-size: 13px;"><strong>提示:</strong>请使用 class="notranslate" 替代。</span></p></td><td><span style="font-size: 13px;"> </span><h2 id="span-style-font-size-px-实例-span"><span style="font-size: 13px;">实例</span></h2><p><span style="font-size: 13px;">规定不应翻译某些元素:</span></p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'>&lt;p translate=&quot;no&quot;&gt;请勿翻译本段。&lt;/p&gt; &lt;p&gt;本段可被译为任意语言。&lt;/p&gt;</pre><div class="contentsignin">Nach dem Login kopieren</div></div><td><span style="font-size: 13px;"> 所有主流浏览器都无法正确地支持 translate 属性。</span></td> <p style="text-align: left;"><br></p><p>Das obige ist der detaillierte Inhalt vonDetaillierte Einführung in den HTML-Absatz Tag. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!</p> </div> </div> <div class="wzconShengming_sp"> <div class="bzsmdiv_sp">Erklärung dieser Website</div> <div>Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn</div> </div> </div> <ins class="adsbygoogle" style="display:block" data-ad-format="autorelaxed" data-ad-client="ca-pub-5902227090019525" data-ad-slot="2507867629"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <div class="AI_ToolDetails_main4sR"> <ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-5902227090019525" data-ad-slot="3653428331" data-ad-format="auto" data-full-width-responsive="true"></ins> <script> (adsbygoogle = window.adsbygoogle || []).push({}); </script> <!-- <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Heißer Artikel</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796780570.html" title="R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796780641.html" title="R.E.P.O. Beste grafische Einstellungen" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Beste grafische Einstellungen</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796785841.html" title="Assassin's Creed Shadows: Seashell Riddle -Lösung" class="phpgenera_Details_mainR4_bottom_title">Assassin's Creed Shadows: Seashell Riddle -Lösung</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>2 Wochen vor</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796780520.html" title="R.E.P.O. So reparieren Sie Audio, wenn Sie niemanden hören können" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. So reparieren Sie Audio, wenn Sie niemanden hören können</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796779766.html" title="WWE 2K25: Wie man alles in Myrise freischaltet" class="phpgenera_Details_mainR4_bottom_title">WWE 2K25: Wie man alles in Myrise freischaltet</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/de/article.html">Mehr anzeigen</a> </div> </div> </div> --> <div class="phpgenera_Details_mainR3"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>Heiße KI -Werkzeuge</h2> </div> <div class="phpgenera_Details_mainR3_bottom"> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411540686492.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undresser.AI Undress" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/ai/undresserai-undress" title="Undresser.AI Undress" class="phpmain_tab2_mids_title"> <h3>Undresser.AI Undress</h3> </a> <p>KI-gestützte App zum Erstellen realistischer Aktfotos</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411552797167.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Clothes Remover" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/ai/ai-clothes-remover" title="AI Clothes Remover" class="phpmain_tab2_mids_title"> <h3>AI Clothes Remover</h3> </a> <p>Online-KI-Tool zum Entfernen von Kleidung aus Fotos.</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173410641626608.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Undress AI Tool" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/ai/undress-ai-tool" title="Undress AI Tool" class="phpmain_tab2_mids_title"> <h3>Undress AI Tool</h3> </a> <p>Ausziehbilder kostenlos</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173411529149311.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="Clothoff.io" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/ai/clothoffio" title="Clothoff.io" class="phpmain_tab2_mids_title"> <h3>Clothoff.io</h3> </a> <p>KI-Kleiderentferner</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/ai/ai-hentai-generator" title="AI Hentai Generator" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/ai_manual/001/246/273/173405034393877.jpg?x-oss-process=image/resize,m_fill,h_50,w_50" src="/static/imghw/default1.png" alt="AI Hentai Generator" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/ai/ai-hentai-generator" title="AI Hentai Generator" class="phpmain_tab2_mids_title"> <h3>AI Hentai Generator</h3> </a> <p>Erstellen Sie kostenlos Ai Hentai.</p> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/de/ai">Mehr anzeigen</a> </div> </div> </div> <script src="https://sw.php.cn/hezuo/cac1399ab368127f9b113b14eb3316d0.js" type="text/javascript"></script> <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Heißer Artikel</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796780570.html" title="R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796780641.html" title="R.E.P.O. Beste grafische Einstellungen" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. Beste grafische Einstellungen</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796785841.html" title="Assassin's Creed Shadows: Seashell Riddle -Lösung" class="phpgenera_Details_mainR4_bottom_title">Assassin's Creed Shadows: Seashell Riddle -Lösung</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>2 Wochen vor</span> <span>By DDD</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796780520.html" title="R.E.P.O. So reparieren Sie Audio, wenn Sie niemanden hören können" class="phpgenera_Details_mainR4_bottom_title">R.E.P.O. So reparieren Sie Audio, wenn Sie niemanden hören können</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/1796779766.html" title="WWE 2K25: Wie man alles in Myrise freischaltet" class="phpgenera_Details_mainR4_bottom_title">WWE 2K25: Wie man alles in Myrise freischaltet</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <span>3 Wochen vor</span> <span>By 尊渡假赌尊渡假赌尊渡假赌</span> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/de/article.html">Mehr anzeigen</a> </div> </div> </div> <div class="phpgenera_Details_mainR3"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hottools2.png" alt="" /> <h2>Heiße Werkzeuge</h2> </div> <div class="phpgenera_Details_mainR3_bottom"> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab96f0f39f7357.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Notepad++7.3.1" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/toolset/development-tools/92" title="Notepad++7.3.1" class="phpmain_tab2_mids_title"> <h3>Notepad++7.3.1</h3> </a> <p>Einfach zu bedienender und kostenloser Code-Editor</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/toolset/development-tools/93" title="SublimeText3 chinesische Version" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97a3baad9677.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 chinesische Version" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/toolset/development-tools/93" title="SublimeText3 chinesische Version" class="phpmain_tab2_mids_title"> <h3>SublimeText3 chinesische Version</h3> </a> <p>Chinesische Version, sehr einfach zu bedienen</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/toolset/development-tools/121" title="Senden Sie Studio 13.0.1" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58ab97ecd1ab2670.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Senden Sie Studio 13.0.1" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/toolset/development-tools/121" title="Senden Sie Studio 13.0.1" class="phpmain_tab2_mids_title"> <h3>Senden Sie Studio 13.0.1</h3> </a> <p>Leistungsstarke integrierte PHP-Entwicklungsumgebung</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d0e0fc74683535.jpg?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="Dreamweaver CS6" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/toolset/development-tools/469" title="Dreamweaver CS6" class="phpmain_tab2_mids_title"> <h3>Dreamweaver CS6</h3> </a> <p>Visuelle Webentwicklungstools</p> </div> </div> <div class="phpmain_tab2_mids_top"> <a href="https://www.php.cn/de/toolset/development-tools/500" title="SublimeText3 Mac-Version" class="phpmain_tab2_mids_top_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" class="lazy" data-src="https://img.php.cn/upload/manual/000/000/001/58d34035e2757995.png?x-oss-process=image/resize,m_fill,h_50,w_72" src="/static/imghw/default1.png" alt="SublimeText3 Mac-Version" /> </a> <div class="phpmain_tab2_mids_info"> <a href="https://www.php.cn/de/toolset/development-tools/500" title="SublimeText3 Mac-Version" class="phpmain_tab2_mids_title"> <h3>SublimeText3 Mac-Version</h3> </a> <p>Codebearbeitungssoftware auf Gottesniveau (SublimeText3)</p> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/de/ai">Mehr anzeigen</a> </div> </div> </div> <div class="phpgenera_Details_mainR4"> <div class="phpmain1_4R_readrank"> <div class="phpmain1_4R_readrank_top"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/hotarticle2.png" alt="" /> <h2>Heiße Themen</h2> </div> <div class="phpgenera_Details_mainR4_bottom"> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/gmailyxdlrkzn" title="Wo ist der Login-Zugang für Gmail-E-Mail?" class="phpgenera_Details_mainR4_bottom_title">Wo ist der Login-Zugang für Gmail-E-Mail?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>7457</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>15</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/cakephp-tutor" title="CakePHP-Tutorial" class="phpgenera_Details_mainR4_bottom_title">CakePHP-Tutorial</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>1376</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>52</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/steamdzhmcssmgs" title="Wie lautet das Format des Kontonamens von Steam?" class="phpgenera_Details_mainR4_bottom_title">Wie lautet das Format des Kontonamens von Steam?</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>77</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>11</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/winactivationkeyper" title="Win11 -Aktivierungsschlüssel dauerhaft" class="phpgenera_Details_mainR4_bottom_title">Win11 -Aktivierungsschlüssel dauerhaft</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>44</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>19</span> </div> </div> </div> <div class="phpgenera_Details_mainR4_bottoms"> <a href="https://www.php.cn/de/faq/newyorktimesdailybrief" title="NYT -Verbindungen Hinweise und Antworten" class="phpgenera_Details_mainR4_bottom_title">NYT -Verbindungen Hinweise und Antworten</a> <div class="phpgenera_Details_mainR4_bottoms_info"> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/eyess.png" alt="" /> <span>17</span> </div> <div class="phpgenera_Details_mainR4_bottoms_infos"> <img src="/static/imghw/tiezi.png" alt="" /> <span>11</span> </div> </div> </div> </div> <div class="phpgenera_Details_mainR3_more"> <a href="https://www.php.cn/de/faq/zt">Mehr anzeigen</a> </div> </div> </div> </div> </div> <div class="Article_Details_main2"> <div class="phpgenera_Details_mainL4"> <div class="phpmain1_2_top"> <a href="javascript:void(0);" class="phpmain1_2_top_title">Related knowledge<img src="/static/imghw/index2_title2.png" alt="" /></a> </div> <div class="phpgenera_Details_mainL4_info"> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600245.html" title="Tabellenrahmen in HTML" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416492486715.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Tabellenrahmen in HTML" /> </a> <a href="https://www.php.cn/de/faq/1796600245.html" title="Tabellenrahmen in HTML" class="phphistorical_Version2_mids_title">Tabellenrahmen in HTML</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:49 PM</span> <p class="Articlelist_txts_p">Anleitung zum Tabellenrahmen in HTML. Hier besprechen wir verschiedene Möglichkeiten zum Definieren von Tabellenrändern anhand von Beispielen für den Tabellenrand in HTML.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600244.html" title="Verschachtelte Tabelle in HTML" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416491283996.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Verschachtelte Tabelle in HTML" /> </a> <a href="https://www.php.cn/de/faq/1796600244.html" title="Verschachtelte Tabelle in HTML" class="phphistorical_Version2_mids_title">Verschachtelte Tabelle in HTML</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:49 PM</span> <p class="Articlelist_txts_p">Dies ist eine Anleitung für verschachtelte Tabellen in HTML. Hier diskutieren wir anhand der entsprechenden Beispiele, wie man eine Tabelle innerhalb der Tabelle erstellt.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600238.html" title="HTML-Rand links" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416482056439.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="HTML-Rand links" /> </a> <a href="https://www.php.cn/de/faq/1796600238.html" title="HTML-Rand links" class="phphistorical_Version2_mids_title">HTML-Rand links</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:48 PM</span> <p class="Articlelist_txts_p">Anleitung zum HTML-Rand links. Hier besprechen wir einen kurzen Überblick über HTML margin-left und seine Beispiele sowie seine Code-Implementierung.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600271.html" title="HTML-Tabellenlayout" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416543391948.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="HTML-Tabellenlayout" /> </a> <a href="https://www.php.cn/de/faq/1796600271.html" title="HTML-Tabellenlayout" class="phphistorical_Version2_mids_title">HTML-Tabellenlayout</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:54 PM</span> <p class="Articlelist_txts_p">Leitfaden zum HTML-Tabellenlayout. Hier besprechen wir die Werte des HTML-Tabellenlayouts zusammen mit den Beispielen und Ausgaben im Detail.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600210.html" title="HTML-geordnete Liste" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416432927533.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="HTML-geordnete Liste" /> </a> <a href="https://www.php.cn/de/faq/1796600210.html" title="HTML-geordnete Liste" class="phphistorical_Version2_mids_title">HTML-geordnete Liste</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:43 PM</span> <p class="Articlelist_txts_p">Leitfaden zur HTML-geordneten Liste. Hier besprechen wir auch die Einführung von HTML-geordneten Listen und Typen sowie deren Beispiele</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600269.html" title="HTML-Eingabeplatzhalter" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416542577781.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="HTML-Eingabeplatzhalter" /> </a> <a href="https://www.php.cn/de/faq/1796600269.html" title="HTML-Eingabeplatzhalter" class="phphistorical_Version2_mids_title">HTML-Eingabeplatzhalter</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:54 PM</span> <p class="Articlelist_txts_p">Leitfaden für HTML-Eingabeplatzhalter. Hier besprechen wir die Beispiele für HTML-Eingabeplatzhalter zusammen mit den Codes und Ausgaben.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600227.html" title="Text in HTML verschieben" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416455153019.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="Text in HTML verschieben" /> </a> <a href="https://www.php.cn/de/faq/1796600227.html" title="Text in HTML verschieben" class="phphistorical_Version2_mids_title">Text in HTML verschieben</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:45 PM</span> <p class="Articlelist_txts_p">Anleitung zum Verschieben von Text in HTML. Hier besprechen wir eine Einführung, wie Marquee-Tags funktionieren, mit Syntax und Beispielen für die Implementierung.</p> </div> <div class="phphistorical_Version2_mids"> <a href="https://www.php.cn/de/faq/1796600246.html" title="HTML-Onclick-Button" class="phphistorical_Version2_mids_img"> <img onerror="this.onerror=''; this.src='/static/imghw/default1.png'" src="/static/imghw/default1.png" class="lazy" data-src="https://img.php.cn/upload/article/202409/04/2024090416493797970.jpg?x-oss-process=image/resize,m_fill,h_207,w_330" alt="HTML-Onclick-Button" /> </a> <a href="https://www.php.cn/de/faq/1796600246.html" title="HTML-Onclick-Button" class="phphistorical_Version2_mids_title">HTML-Onclick-Button</a> <span class="Articlelist_txts_time">Sep 04, 2024 pm 04:49 PM</span> <p class="Articlelist_txts_p">Anleitung zum HTML-OnClick-Button. Hier diskutieren wir deren Einführung, Funktionsweise, Beispiele und Onclick-Events in verschiedenen Veranstaltungen.</p> </div> </div> <a href="https://www.php.cn/de/web-designer.html" class="phpgenera_Details_mainL4_botton"> <span>See all articles</span> <img src="/static/imghw/down_right.png" alt="" /> </a> </div> </div> </div> </main> <footer> <div class="footer"> <div class="footertop"> <img src="/static/imghw/logo.png" alt=""> <p>Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!</p> </div> <div class="footermid"> <a href="https://www.php.cn/de/about/us.html">Über uns</a> <a href="https://www.php.cn/de/about/disclaimer.html">Haftungsausschluss</a> <a href="https://www.php.cn/de/update/article_0_1.html">Sitemap</a> </div> <div class="footerbottom"> <p> © php.cn All rights reserved </p> </div> </div> </footer> <input type="hidden" id="verifycode" value="/captcha.html"> <script>layui.use(['element', 'carousel'], function () {var element = layui.element;$ = layui.jquery;var carousel = layui.carousel;carousel.render({elem: '#test1', width: '100%', height: '330px', arrow: 'always'});$.getScript('/static/js/jquery.lazyload.min.js', function () {$("img").lazyload({placeholder: "/static/images/load.jpg", effect: "fadeIn", threshold: 200, skip_invisible: false});});});</script> <script src="/static/js/common_new.js"></script> <script type="text/javascript" src="/static/js/jquery.cookie.js?1744341252"></script> <script src="https://vdse.bdstatic.com//search-video.v1.min.js"></script> <link rel='stylesheet' id='_main-css' href='/static/css/viewer.min.css?2' type='text/css' media='all' /> <script type='text/javascript' src='/static/js/viewer.min.js?1'></script> <script type='text/javascript' src='/static/js/jquery-viewer.min.js'></script> <script type="text/javascript" src="/static/js/global.min.js?5.5.53"></script> <script> var _paq = window._paq = window._paq || []; /* tracker methods like "setCustomDimension" should be called before "trackPageView" */ _paq.push(['trackPageView']); _paq.push(['enableLinkTracking']); (function () { var u = "https://tongji.php.cn/"; _paq.push(['setTrackerUrl', u + 'matomo.php']); _paq.push(['setSiteId', '9']); var d = document, g = d.createElement('script'), s = d.getElementsByTagName('script')[0]; g.async = true; g.src = u + 'matomo.js'; s.parentNode.insertBefore(g, s); })(); </script> <script> // top layui.use(function () { var util = layui.util; util.fixbar({ on: { mouseenter: function (type) { layer.tips(type, this, { tips: 4, fixed: true, }); }, mouseleave: function (type) { layer.closeAll("tips"); }, }, }); }); document.addEventListener("DOMContentLoaded", (event) => { // 定义一个函数来处理滚动链接的点击事件 function setupScrollLink(scrollLinkId, targetElementId) { const scrollLink = document.getElementById(scrollLinkId); const targetElement = document.getElementById(targetElementId); if (scrollLink && targetElement) { scrollLink.addEventListener("click", (e) => { e.preventDefault(); // 阻止默认链接行为 targetElement.scrollIntoView({ behavior: "smooth" }); // 平滑滚动到目标元素 }); } else { console.warn( `Either scroll link with ID '${scrollLinkId}' or target element with ID '${targetElementId}' not found.` ); } } // 使用该函数设置多个滚动链接 setupScrollLink("Article_Details_main1L2s_1", "article_main_title1"); setupScrollLink("Article_Details_main1L2s_2", "article_main_title2"); setupScrollLink("Article_Details_main1L2s_3", "article_main_title3"); setupScrollLink("Article_Details_main1L2s_4", "article_main_title4"); setupScrollLink("Article_Details_main1L2s_5", "article_main_title5"); setupScrollLink("Article_Details_main1L2s_6", "article_main_title6"); // 可以继续添加更多的滚动链接设置 }); window.addEventListener("scroll", function () { var fixedElement = document.getElementById("Article_Details_main1Lmain"); var scrollTop = window.scrollY || document.documentElement.scrollTop; // 兼容不同浏览器 var clientHeight = window.innerHeight || document.documentElement.clientHeight; // 视口高度 var scrollHeight = document.documentElement.scrollHeight; // 页面总高度 // 计算距离底部的距离 var distanceToBottom = scrollHeight - scrollTop - clientHeight; // 当距离底部小于或等于300px时,取消固定定位 if (distanceToBottom <= 980) { fixedElement.classList.remove("Article_Details_main1Lmain"); fixedElement.classList.add("Article_Details_main1Lmain_relative"); } else { // 否则,保持固定定位 fixedElement.classList.remove("Article_Details_main1Lmain_relative"); fixedElement.classList.add("Article_Details_main1Lmain"); } }); </script> </body> </html>