前端开发|html中style的两种方式和js的两种方式

默认style:在style 可以改变,,等文本属性,颜色属性,大小,背景,位置....

Untitled Doc - 锐客网 legend{ color:blue; font-size: 20px; align-content: center; } label{ font-weight: bold; } th{ background: #099; border-radius: 15px; } table{ border: 1px solid #099; border-radius: 5px; } input, select { border-radius: 5px; }

第二种导入法:需要注明导入css的文件的location,最好呢就是把css和html放在同一个文件夹中,那么可以直接写css文件名,就表示定位到当前的目录下:

- 锐客网



【前端开发|html中style的两种方式和js的两种方式】

默认script,可以写在和 标签中

第二种导入法:一般写在导入的css之下:

First Script - 锐客网

然后在codejs.js中可以自由发挥,哈哈

function addb(a,b){ alert(a+b); } var a = 1; var b = "1"; if (a===b) alert("a === b"); //a 与 b 值相等,并且a 和 b的类型相等 if (a==b) alert("a == b"); //a 与 b值相等







    推荐阅读