html中position的一个小用法使用介绍
发布时间:2014-01-14 16:29:11 作者:佚名 我要评论
想必大家对html中position属性并不陌生吧,使用它可以完成普通标签完成不了的任务,下面有个不错的示例,大家可以参考下
GPT4.0+Midjourney绘画+国内大模型 会员永久免费使用!
【 如果你想靠AI翻身,你先需要一个靠谱的工具! 】
复制代码
代码如下:<html>
<head>
<title>day03.html</title>
<style type="text/css">
/*首先写一个position的div*/
#car{
width:150px;height:30px;
background: #999999;
color:white;text-align: center;
line-height: 30px;margin: 232px 300px;
border:1px solid black;position: relative;
}
#num{
width:20px;height:20px;background: red;
color:white;text-aligh:center;
line-height:20px;position: absolute;
top:-15px;left:25px;
}
</style>
</head>
<body>
<div id="car">
去购物车付款
<div id="num">0</div>
</div>
</body>
</html>
相关文章
- 在html 5增加了新元素header、footer,测试过发现IE不能解析html 5新增的元素。 代码如下:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"2008-10-17
- 这篇文章主要介绍了html中 position用法,文中逐一给大家介绍了position的四个属性值,感兴趣的朋友跟随小编一起看看吧2018-09-18
最新评论