我爱编程

CSS 基础

2017-09-14  本文已影响0人  Tuuu

CSS的全称是什么?

Cascading style sheets 层叠样式表

CSS有几种引入方式?

<style type="text/css">
  h1 {
    color: red;
    font-size: 20px;
  }
</style>
<h1>饥人谷</h1>
<head>
  <link rel="stylesheet" type="text/css" href="index.css">
</head>
<style>
  @import url("hello.css");
  @import "world.css";
</style>

link 和@import 有什么区别?

以下这几种文件路径分别用在什么地方,代表什么意思?

如果我想在js.jirengu.com上展示一个图片,需要怎么操作?

列出5条以上html和 css 的书写规范

HTML
CSS

截图介绍 chrome 开发者工具的功能区

截图
上一篇 下一篇

猜你喜欢

热点阅读