• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






天生自然

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 276 下一页

2021年11月2日

chaptertow
摘要: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P 阅读全文
posted @ 2021-11-02 17:46 吴裕雄 阅读(29) 评论(0) 推荐(0)
 

2021年11月1日

Chapter1Main
摘要: <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/P 阅读全文
posted @ 2021-11-01 15:51 吴裕雄 阅读(43) 评论(0) 推荐(0)
 
JavaScript语言 代码
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>JavaScript直接方式</title> </head> <body> Hello World <script language="javascript"> document. 阅读全文
posted @ 2021-11-01 14:34 吴裕雄 阅读(174) 评论(0) 推荐(0)
 
JavaScript语言
摘要: JavaScript源代码被嵌在一个HTML文档中 JavaScript源代码可以出现在文档头部(<head> </head>)和文档体部(<body> </body>)。 <script language="javascript"> // JavaScript脚本语句 </script> 1.定义 阅读全文
posted @ 2021-11-01 12:47 吴裕雄 阅读(127) 评论(0) 推荐(0)
 
CSS页面布局代码
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>块元素与行内元素</title> <style> p{ background-color:pink;} span{ background-color:yellow;} i{ bac 阅读全文
posted @ 2021-11-01 12:33 吴裕雄 阅读(376) 评论(0) 推荐(0)
 
CSS页面布局
摘要: 块元素在页面中以区域块的形式出现,其特点是,每个块元素通常都会独自占据一整行或多整行,可以对其设置宽度、高度、对齐等属性 行内元素与块元素可以通过display属性进行相互交换 display属性常用的属性值及含义如下: (1)inline:此元素将显示为行内元素(行内元素默认的 display属性 阅读全文
posted @ 2021-11-01 12:18 吴裕雄 阅读(415) 评论(0) 推荐(0)
 
CSS基础代码
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>样式使用</title> <style> @import url("CSS3-3.css"); </style> </head> <body> <a href="http://ww 阅读全文
posted @ 2021-11-01 12:09 吴裕雄 阅读(241) 评论(0) 推荐(0)
 
CSS基础
摘要: (1)内嵌样式用于定义某一个标记的样式 (2)内嵌样式在四种样式(内嵌样式、内部样式、外部样式、默认样式)中优先级别最高 <style type="text/css"> 选择器{ 属性:属性值; ...... 属性:属性值; } </style> (1)内部样式用于定义某一个网页的样式 (2)内部样 阅读全文
posted @ 2021-11-01 11:48 吴裕雄 阅读(50) 评论(0) 推荐(0)
 
表格与表单
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>表格的行属性</title> </head> <body> <table border="2" width="400px" > <caption>学生信息</caption> <t 阅读全文
posted @ 2021-11-01 11:27 吴裕雄 阅读(46) 评论(0) 推荐(0)
 

2021年10月25日

表格的属性
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <title>表格的属性</title> </head> <body> <table border="2" width="400px" height="60px" cellspacing="1" 阅读全文
posted @ 2021-10-25 22:47 吴裕雄 阅读(172) 评论(0) 推荐(0)
 
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 276 下一页