会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
kuaiquxie
感悟代码魅力,追求极限人生!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
22
23
24
25
26
27
28
29
30
···
40
下一页
2022年2月6日
css边距,高度宽度
摘要: 使用单独的外边距属性 <!DOCTYPE html> <html> <head> <style> div { border: 1px solid black; margin-top: 100px; margin-bottom: 100px; margin-right: 150px; margin-l
阅读全文
posted @ 2022-02-06 23:01 kuaiquxie
阅读(96)
评论(0)
推荐(0)
2022年2月5日
js数组方法,数组排序
摘要: js数组方法 <!DOCTYPE html> <html> <body> <h2>pop()</h2> <p>pop() 方法从数组中删除最后一个元素。</p> <p id="demo1"></p> <p id="demo2"></p> <p id="demo3"></p> <p id="demo4
阅读全文
posted @ 2022-02-05 21:59 kuaiquxie
阅读(48)
评论(0)
推荐(0)
js模板字面量,数字
摘要: 字符串插值 <!DOCTYPE html> <html> <body> <h2>JavaScript 模板字面量</h2> <p>模板字面量允许字符串中的变量:</p> <p id="demo"></p> <p>Internet Explorer 不支持模板字面量。</p> <script> var
阅读全文
posted @ 2022-02-05 21:14 kuaiquxie
阅读(70)
评论(0)
推荐(0)
css背景,边框
摘要: css背景(背景属性在一条声明之中) <!DOCTYPE html> <html> <head> <style> body { background: #ffffff url("/i/photo/tree.png") no-repeat right top; margin-right: 200px;
阅读全文
posted @ 2022-02-05 20:23 kuaiquxie
阅读(81)
评论(0)
推荐(0)
css选择器
摘要: 元素选择器 <!DOCTYPE html> <html> <head> <style> p { text-align: center; color: red; } </style> </head> <body> <p>每个段落都会受到样式的影响。</p> <p id="para1">我也是!</p>
阅读全文
posted @ 2022-02-05 00:39 kuaiquxie
阅读(51)
评论(0)
推荐(0)
js事件
摘要: 事件
阅读全文
posted @ 2022-02-05 00:36 kuaiquxie
阅读(38)
评论(0)
推荐(0)
2022年2月3日
css颜色
摘要: 设置背景颜色 <!DOCTYPE html> <html> <body> <h1 style="background-color:DodgerBlue;">Hello World</h1> <p style="background-color:Tomato;"> guangdong </p> </b
阅读全文
posted @ 2022-02-03 21:52 kuaiquxie
阅读(32)
评论(0)
推荐(0)
2022年2月2日
设置界面
摘要: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.co
阅读全文
posted @ 2022-02-02 23:57 kuaiquxie
阅读(107)
评论(0)
推荐(0)
js函数
摘要: 下面这是一个实例 var x = myFunction(7, 8); // 调用函数,返回值被赋值给 x function myFunction(a, b) { return a * b; // 函数返回 a 和 b 的乘积 }
阅读全文
posted @ 2022-02-02 23:56 kuaiquxie
阅读(38)
评论(0)
推荐(0)
css使用
摘要: 外部css <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="/demo/css/mystyle.css"> </head> <body> <h1>This is a heading</h1> <p>This is a paragr
阅读全文
posted @ 2022-02-02 23:54 kuaiquxie
阅读(48)
评论(0)
推荐(0)
上一页
1
···
22
23
24
25
26
27
28
29
30
···
40
下一页
公告