上一页 1 ··· 17 18 19 20 21
摘要: type="text/css"的作用是什么?它是CSS样式的标记。type->类型,这里是style的属性text/css ->文本/css,即css文本type="text/css" 表示的是浏览器的解释方式,如果不定义的话,有些CSS效果 浏览器解释得不一样。 层叠次序 当同一个 HTML 元素 阅读全文
posted @ 2018-02-11 22:32 夜游星 阅读(130) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>using namespace std;namespace first{ int var = 5;}namespace second{ double var = 3.1416;}int main () { cout << first::var << endl; 阅读全文
posted @ 2018-02-11 20:56 夜游星 阅读(166) 评论(0) 推荐(0) 编辑
摘要: cmd 在桌面或任意磁盘新建一个TXT--输入CMD并保存--修改扩展名为.BAT md 文件夹名 新建文件夹cd 文件夹名 进入到该目录cd.. 返回上一层目录cd\ 返回根目录cd.>文件名 新建文件rd 文件夹名 删除文件夹(只能删除空文件夹)copy 文件(夹)名1 文件(夹)名2 1复制到 阅读全文
posted @ 2018-02-11 20:47 夜游星 阅读(385) 评论(0) 推荐(0) 编辑
摘要: <html></html> <body></body> <h1> this is the first heading </h1>..<h5> this is heading 5</h5> <p> this is a paragraph </p><p> this is another </p> 链接< 阅读全文
posted @ 2018-02-11 20:33 夜游星 阅读(274) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21