怎样用div做三角形】的更多相关文章

20181204 用盒子模型做三角形的效果: <div></div> width:0px; height:0px; border:10px solid red; border-left-color:green;(如果想改变三角形的方向可以改变盒子的边框线的方向) 首行缩进: text-indent:后面跟px/em; em:相对于当前字体: 字体间距: letter-spacing:()px: 文本对齐方式: text-allign:center/left/right/.....…
以前做三角形图标一直是用图片,或者css3旋转,现在才发现原来还有这么简单的三角形 div { border: 10px solid transparent; border-bottom: 10px solid #000; width: 0; } 只要这么简单的三行css就可以实现一个三角形!…
网站上经常会使用一些三角形,除了图片的方式,实际上利用border我们可以做出纯CSS的三角形.我们知道border是个边抖可以单独设置,当四个边相交的时候他们是什么时候改变的? .t0{ margin:30px; height:200px; width:200px; border-top:solid 100px red; border-left:solid 100px green; border-right:solid 100px orange; border-bottom:solid 100…
例题二.用div做下拉列表 <title>无标题文档</title> <style type="text/css"> *{ margin:0px auto; padding:0px} #xiala{ width:180px; height:33px; border:1px solid #999;text-align:center; line-height:33px; vertical-align:middle; } #xiala:hover{ cur…
作业一:两个列表之间数据从一个列表移动到另一个列表 <div style="width:600px; height:500px; margin-top:20px"> <div style="width:200px; height:300px; float:left"> <select id="list1" size="10" style="width:200px; height:300p…
div css 伪类 不固定图片大小 居中 <style> .pic_box{width:300px; height:300px; background-color:#beceeb; font-size:0; *font-size:200px; text-align:center;} .pic_box img{vertical-align:middle;} .pic_box::after{ content:'center'; display:inline-block; width:0; hei…
当需要做一个翻转卡片式的div时候,需要两个div的大小等大例如: 画出两个等大的div后,将他们重叠 图中的两个div做了重叠,做重叠时候用的属性是 position: absolute; 并且需要将第一页的css里加上z-index 可以使的第一页在第二页上 main的css需要添加 transform: translate(-50%,-50%); 课使旋转中心在div的中点 再做完重叠后需要用 transform: rotateY(-180deg); 这条语句把第二个div事先令它翻转18…
for循环 1.格式 for    变量    in   集合: 循环体 2.概述 当程序执行for循环,按顺序从集合中获取元素变量保存当前循环得到的值,再去执行循环体.当集合中数据都被取完,则此刻跳出循环. 实例: 1 list1 = [1, 2, 3, 4, 5] 2 for i in list1: 3 print(i) 执行结果: 1 2 3 4 5 range(start,stop,[step]) step默认为1,可以不写步长 range(10)   相当于 构建0-9的集合,等同于(…
在很多网站都见过这样的箭头,之前我一直以为是图片,直到今天才知道原来可以用css做.开始看代码没太看懂,后来自己试了几遍才恍然大悟.贴出来分享下.(大神请直接忽略) 先看代码: HTML部分就是一个单纯的div. .sanjiao{ width:0px; height:0px; overflow:hidden; border-width:10px; border-color:transparent transparent blue transparent; border-style:dashed…
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title></title> <style> div{ width:0; height:0; border:5px solid; /*注:border-color中,设置了颜色那个边框就是三角形的底边框*/ border-color: transparent…