
html的标签
陆展鹏
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
html 列表、表单标签的认识
111 222 333 444 555 555 444 333 222 111 用户名: 文本标签 密码: 密码文本标签 再次输入密码: 隐藏域: 单选 单选 多选1 多选2 多选3 多选4 登陆原创 2017-01-13 20:04:03 · 219 阅读 · 0 评论 -
css样式设置字大小和颜色
h2{font-size:16px;color:#ccc;}/*标签选择器*/ .one{font-size:30px!important;color: blueviolet!important;}/*类选择器*/font-size:设置字体的大小 color设置字体的颜色 #two{font-size:16px;color:green;}/*id选择器*/ aaaa原创 2017-01-14 19:49:07 · 3105 阅读 · 0 评论 -
类和id选择器
.box{width: 300px;height: 300px;color: red;} /* #wrap{width: 500px;height: 500px;color:purple;}*/ div p{width: 500px;height: 500px;color: green;}/*后代选择器*/ div.box{width: 500px;height: 500px;color:y原创 2017-01-14 19:53:09 · 241 阅读 · 0 评论 -
html a标签img标签的认识
img标签可以在网页中插入你想要的图片 a标签的用法有很多可以做成链接跳转到别的页面也可以在同一页面内跳转 在一页面内跳转这种用法可称为描点用法如下 这是跳转链接 比如这个网页很高 然后你点一下上面的那个链接就会在同一页面内跳转我吧a标签链接到下面的图片 在这里img标签一定要给他个id他才能跳转到这图片否则链接就失效原创 2017-01-13 09:04:45 · 624 阅读 · 0 评论