摘要: 1. 表单 (Form) 定义:HTML 语义化标签,用于收集用户输入并提交数据。 特征: 默认块级元素(display: block)。 本身不具备任何视觉布局能力,仅负责数据承载与提交。 核心属性:action(提交地址)、method(请求方式:GET/POST)。 布局关联:其内部元素(输入 阅读全文
posted @ 2026-07-10 14:08 qwerzxcv-- 阅读(4) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <form action="" method="post"> <div> <h1>个人信息</h1> </div> <div> <l 阅读全文
posted @ 2026-06-26 15:42 qwerzxcv-- 阅读(6) 评论(0) 推荐(0)
摘要: 弹性布局 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> .container1{ /* justify-content:start;*/ align-items:flex-start ; } 阅读全文
posted @ 2026-06-26 15:40 qwerzxcv-- 阅读(7) 评论(0) 推荐(0)
摘要: <link rel="stylesheet" href="css/new_file.css" /> /> <body> <div class="box1"> <div class="img1"> <img src="img/icon3.jpg" /> </div> <div class="txt"> 阅读全文
posted @ 2026-06-17 07:59 qwerzxcv-- 阅读(3) 评论(0) 推荐(1)
摘要: div.content{ width: 200px; height: 200px; margin: 0 auto; } li{ float: left; list-style-type: none; } a{ color: #000; text-decoration: none; display: 阅读全文
posted @ 2026-06-17 07:56 qwerzxcv-- 阅读(3) 评论(0) 推荐(0)
摘要: <style type="text/css" :> * { margin: 0; padding: 0; } .denglu1 { float: left; width: 107px; height: 34px; line-height: 34px; text-align: center; back 阅读全文
posted @ 2026-06-05 12:57 qwerzxcv-- 阅读(6) 评论(0) 推荐(0)
摘要: <h1 id="top"class="s">顶部<h1> ​ <a href="#"class="d">锚记 ​ <h1 id="bottm"class="m">底部</h1> 阅读全文
posted @ 2026-05-24 16:59 qwerzxcv-- 阅读(9) 评论(0) 推荐(4)
摘要: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <style> .banner3{ width:1000px ; height: 261px; background-image: url(img 阅读全文
posted @ 2026-05-24 16:55 qwerzxcv-- 阅读(9) 评论(0) 推荐(4)
摘要: *{margin: 0;padding: 0;} div.son{ margin: 0 auto; width: 400px; /*height: 400px;*/ background-color: yellow; padding: 40px 60px; /*font-size: 72px;*/ 阅读全文
posted @ 2026-05-20 08:28 qwerzxcv-- 阅读(8) 评论(0) 推荐(4)
摘要: <html> <head> <meta charset="UTF-8"> <title>选择器</title> <style type="text/css"> tr:nth-child(odd ){ background-color: red; } tr:nth-child(even){ backg 阅读全文
posted @ 2026-05-20 08:10 qwerzxcv-- 阅读(19) 评论(0) 推荐(4)