先上浏览图片 注册页面代码: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>Title</title> <style type="text/css"> body { background-image: ...
分类:
其他好文 时间:
2020-06-08 19:17:59
阅读次数:
170
1. obj.style:这个方法只能获取行内样式写在style属性中的值(style=”…”),而无法获取定义在<style type="text/css"></style>里面的属性。 2.obj.currentStyle和getComputedStyle 方法相同,但obj.currentSt ...
分类:
Web程序 时间:
2020-06-06 01:06:55
阅读次数:
65
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <link rel="stylesheet" type="text/css" href="bootstrap-3.3.7-dist/css/bootstrap.cs ...
分类:
其他好文 时间:
2020-06-06 00:50:53
阅读次数:
66
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>....</title> <style type="text/css"> .ui-pagination .jump, .ui-pagination .page, .ui-pagin ...
分类:
Web程序 时间:
2020-06-05 14:56:19
阅读次数:
64
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .tab-panes ul{ margin: 0; padding: 0; } .tab-panes ul li{ ...
分类:
其他好文 时间:
2020-06-04 21:23:05
阅读次数:
59
[A] link 标签拓展 1. 引入外部 CSS 样式文件(前面已学过) <link rel = "stylesheet" type = "text/css" href = "theme.css"> 引入外部一个名叫 theme.css 的css文件 2. 给网页名添加一个小图标 <link re ...
分类:
Web程序 时间:
2020-06-04 14:09:38
阅读次数:
85
<!DOCTYPE html><html><head> <meta charset="utf-8"> <title>PCBPrint</title> <style type="text/css"> .moveUp{ width:15px; height:25px; display:inline-bl ...
分类:
其他好文 时间:
2020-06-03 20:17:24
阅读次数:
58
## calc实现 css两端固定大小,中间自动大小## 样式代码 <style type="text/css"> .wrap{ height:300px; width:400px; background:#e0e0e0; } .top{ height:50px; border:solid 1px ...
分类:
Web程序 时间:
2020-05-30 14:19:49
阅读次数:
79
问题: 用户输入网址(假设是个html页面,并且是第一次访问) 假设html 文件demo如下 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <link type="text/css" h ...
分类:
Web程序 时间:
2020-05-30 11:02:08
阅读次数:
102
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 <style type="text/css"> 7 8 9 .box1{ 10 width: 200px; 11 height: 100p ...
分类:
其他好文 时间:
2020-05-28 11:36:34
阅读次数:
86