l14107cb 发表于 2024-6-30 01:38:37

css4-1至4-3


    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">列表:</p>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">#04-1 CSS 元素<span style="color: black;">归类</span>(块级元素、行内元素)+a元素</p>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">#04-2 CSS 语义化标签—H5标签</p>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">#04-3-1 表单元素</p>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">#04-3-2 表单提交原理(<span style="color: black;">触及</span>post和get)</p>#04-4 API自带元素标签
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;"><a style="color: black;">纯CSS实现表单验证</a></p>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">#04-1 CSS 元素<span style="color: black;">归类</span>(块级元素、行内元素)+a元素</p>display:block、inline、inline-block 块级<span style="color: black;">包括</span>块级和行内;行内只能<span style="color: black;">包括</span>文本和行内 块级占据一整行空间;行内占据<span style="color: black;">自己</span>宽度空间, 宽高设置、内外边距的差异<p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">**1、 块级元素</p>
    <div style="color: black; text-align: left; margin-bottom: 10px;">div h1-h6 p hr(线)
      form table pre ul li dl ol
      dd dt tr td th</div>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">**2、行内元素(内联)</p>
    <div style="color: black; text-align: left; margin-bottom: 10px;">em strong span a img br
      button input label select textarea
      code script</div>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">如图:</p>
    <div style="color: black; text-align: left; margin-bottom: 10px;"><img src="https://pic2.zhimg.com/80/v2-895a580aca74b4864a20af8ffda47375_720w.webp" style="width: 50%; margin-bottom: 20px;"></div>
    <h2 style="color: black; text-align: left; margin-bottom: 10px;">#04-2 CSS 语义化标签—H5标签</h2>
    <h3 style="color: black; text-align: left; margin-bottom: 10px;">
      <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;"><span style="color: black;">1、</span>HTML版本</p>
    </h3>
    <h3 style="color: black; text-align: left; margin-bottom: 10px;"><span style="color: black;">2、</span>新增H5标签</h3>
    <h3 style="color: black; text-align: left; margin-bottom: 10px;">
      <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">#04-3-1 表单元素</p>
    </h3>
    <h2 style="color: black; text-align: left; margin-bottom: 10px;"><span style="color: black;">1、</span>实践</h2>
    <p style="font-size: 16px; color: black; line-height: 40px; text-align: left; margin-bottom: 15px;">1、贴上完整的代码图:</p>&lt;label for="username"&gt;姓名&lt;/label&gt; &lt;input type="text" id="username" name="username1" placeholder="用户名"&gt; &lt;input type="password" id="password" name="password1"&gt; &lt;input type="radio" name="sex" value="男"&gt;男 &lt;input type="checkbox" name="hobby" value="dota"&gt;dota &lt;label for="textarea"&gt;评论&lt;/label&gt; &lt;textarea name="article"&gt; 123 &lt;/textarea&gt; &lt;input type="hidden" name="abcd" value="12345"&gt; &lt;input type="file" name="myfile" accept="image/png"&gt; &lt;select name="city"&gt; &lt;option value="cat"&gt;猫&lt;/option&gt; &lt;/select&gt;<div style="color: black; text-align: left; margin-bottom: 10px;">&lt;!DOCTYPE html&gt;
      &lt;html lang="en"&gt;
      &lt;head&gt;
      &lt;meta charset="UTF-8"&gt;
      &lt;title&gt;Document&lt;/title&gt;
      &lt;/head&gt;
      &lt;body&gt;
      &lt;div class="login"&gt;
      &lt;input type="text" name="sex"&gt;
      &lt;form action="/a123" method="get"&gt;
      &lt;div class="username"&gt;
      &lt;label for="username"&gt;姓名&lt;/label&gt;
      &lt;input type="text" id="username" name="username1" placeholder="用户名"&gt;
      &lt;/div&gt;
      &lt;div class="</div>




wrjc1hod 发表于 2024-11-1 18:47:38

我完全赞同你的观点,思考很有深度。

qzmjef 发表于 昨天 17:19

祝福你、祝你幸福、早日实现等。
页: [1]
查看完整版本: css4-1至4-3