Blogger Information
Blog 6
fans 0
comment 0
visits 4086
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS基础—2019年9月2日
淡淡的博客
Original
572 people have browsed it
  1. iframe的使用:通过a标签点击,target 在iframe中显示相应页面(此处以百度网址代替)

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>内联框架标签</title>
	</head>
	<body>
		
		<h2>后台</h2>
		
		<ul style="float: left">
			<li><a href="https://www.baidu.com/" target="main">用户管理</a></li>
			<li><a href="https://www.baidu.com/" target="main">分类管理</a></li>
			<li><a href="https://www.baidu.com/" target="main">商品管理</a></li>
			<li><a href="https://www.baidu.com/" target="main">系统设置</a></li>
		</ul>
		
		<iframe srcdoc="<h2>加油</h2>" width="200" height="200" name="main" style="float: left"></iframe>
	</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


2.CSS样式优先级:内联样式  >  内部样式  > 外部样式


引入外部css源码如下:

p {

    color: red;

}


css样式源码如下

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

//引入外部CSS文件

    <link rel="stylesheet" href="static/css/style1.css">

    <title>css</title>

    <style>

        p {

            color: green;

        }

    </style>

</head>

<body>

<p>加油</p>

<p style="color: blue;">加油</p>

<p>加油</p>

</body>

</html>

1.jpg


3.选择器的运用:

优先级:标签 < class < id < js


<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>css选择器</title>

    <style>

        /*id选择器: */

        #red {

            color: red;

        }

        /*类选择器: */

        .green {

            color: green;

        }

        /*标签选择器*/

        p {

            color: aqua;

        }

    </style>

</head>

<body>

<p id="red">原来css非常简单</p>

<p id="red1">原来css非常简单</p>

<script>

    document.getElementsByTagName('p').item(0).style.color = 'blue';

</script>

</body>

</html>

2.jpg


4.盒模型元素: width, height, padding, border, margin

CSS样式:

.box1 {

    width: 200px;

    height: 200px;

    background-color: lightblue;

    padding: 20px 30px;

    border-top: 10px solid red;

    border-right: 10px dashed green;

    border-bottom-width: 10px;

    border-bottom-style: dotted;

    border-bottom-color: blue;

    border-left-width: 10px;

    border-left-style: double;

    border-left-color: black;

}

.box2 {

    height: inherit;

    background-color: wheat;

}

HTML源码:

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <link rel="stylesheet" href="static/css/style2.css">

    <title>盒模型</title>

</head>

<body>

<div class="box1">

    <div class="box2"></div>

</div>

</body>

</html>

3.jpg



5.作业总结:

  1. iframe默认显示的东西用srcdoc,主要用于后台管理页面框架。

  2. CSS样式优先级:内联样式  >  内部样式  > 外部样式

  3. 选择器优先级:标签 < class < id < js

  4. 盒模型(默认块元素)五大要素:width, height, padding, border, margin

  5. HTML语义化标签:

    <header>头部</header>

    <nav>导航</nav>

    <main>主体

    <article>左边内容区</article>

    <aside>右边侧边栏</aside>

    </main>

    <footer>底部</footer>


Correction status:unqualified

Teacher's comments:你是新人吧, 抽空把群空间中的作业要求看一下, 不允许直接发个代码交, 要有运行效果图, 要有总结 , 代码只需要提交关键部分即可
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post