名站导航为爱好css的朋友们提供相关的知识。
css教程 nth-child选中tr中的第3列td
注意:这里的index是从1开始计数。
- 此篇文章具体介绍如下
代码实例如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.manongjc.com/" />
<title>码农教程</title>
<style type="text/css教程">
.parent{
width:400px;
height:400px;
border:1px solid red;
}
.children{
border:1px solid blue;
height:50px;
}
</style>
</head>
<body>
<div class="parent">
<div class="children">码农教程欢迎你</div>
</div>
</body>
</html>
以上代码可以看出,默认状态下,并不能够实现我们想要的效果。下面对以上代码进行修改如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.manongjc.com/" />
<title>码农教程</title>
<style type="text/css教程">
.parent{
width:400px;
height:400px;
border:1px solid red;
}
.children{
border:1px solid blue;
height:50px;
display:inline-block;
*display:inline;
*zoom:1;
}
</style>
</head>
<body>
<div class="parent">
<div class="children">码农教程欢迎你</div>
</div>
</body>
</html>
display:inline-block;
*display:inline;
*zoom:1;
关于css的相关的知识就说到这里希望能够可以帮助更多的朋友们。,css,div,自适应html 去掉input 获取焦点时的边框