搜索结果
查询Tags标签: 50px,共有 22条记录-
6_属性选择器
<!DOCTYPE html> <html lang="en"> <head><meta charset="UTF-8"><title>Title</title><style>.demo a{float: left;/*往左边浮动*/display: block;height: 50px;width: 50px;border-radius: 10px;/*圆角边…
2022/8/5 23:23:51 人评论 次浏览 -
CSS画几何图
如何画直角梯形、等腰梯形? 首先先试一下,下面这段代码<div class="box"></div>.box{width: 100px;height: 100px;border-top: 50px solid orange;border-left: 50px solid blue;border-right: 50px solid purple;border-bottom: 50px solid brow…
2022/5/26 23:22:11 人评论 次浏览 -
每周学习总结一
一、css3的三角形画法(一)、原理通过对于边框的设置,来画出三角形。 width: 50px; height: 50px; border-bottom: 50px red solid; border-top: 50px green solid; border-left: 50px yellow solid; border-right: 50px blue solid;当设置盒子的宽高为0时,就是由四个三…
2022/2/27 23:27:31 人评论 次浏览 -
微信小程序——悬浮窗拖动
使用 movable-area movable-view 官方文档 代码 direction="all"属性必不可缺 wxml <movable-area class="all"><movable-view direction="all" class="touchmove"><!-- <image src=../images/icon_component_…
2022/2/8 14:13:39 人评论 次浏览 -
Web前端学习第五天——————HTML、CSS篇.020元素的不同类型
网页效果 总结 .container .subject a{ text-decoration: none; background-color: #045899; color: white; font-size: 12px; width: 150px; height: 50px; line-height: 50px; display:block; margin: 0 auto 20px; }:a为内联元素,displa…
2022/1/7 6:05:49 人评论 次浏览 -
Web前端学习第五天——————HTML、CSS篇.020元素的不同类型
网页效果 总结 .container .subject a{ text-decoration: none; background-color: #045899; color: white; font-size: 12px; width: 150px; height: 50px; line-height: 50px; display:block; margin: 0 auto 20px; }:a为内联元素,displa…
2022/1/7 6:05:49 人评论 次浏览 -
多倍图
@目录1. 物理像素&物理像素比2. 多倍图物理像素比所导致的问题解决方案3. 多倍图切图 cutterman4. 多倍精灵图的做法1. 物理像素&物理像素比物理像素指的是屏幕分辨率,物理像素点指的是屏幕显示的最小颗粒,是物理真实存在的。这是厂商在出厂时就设置好了,比如苹…
2021/12/30 6:07:26 人评论 次浏览 -
多倍图
@目录1. 物理像素&物理像素比2. 多倍图物理像素比所导致的问题解决方案3. 多倍图切图 cutterman4. 多倍精灵图的做法1. 物理像素&物理像素比物理像素指的是屏幕分辨率,物理像素点指的是屏幕显示的最小颗粒,是物理真实存在的。这是厂商在出厂时就设置好了,比如苹…
2021/12/30 6:07:26 人评论 次浏览 -
2.html基础
hover: 1. 中间什么都不加 控制子元素; 2. ‘+’ 控制同级元素(兄弟元素); 3. ‘~’ 控制就近元素; 定位三种:固定定位:相对于浏览器定位相对定位:相对于原本的位置定位(依然会占据原来的空间)绝对定位:相对于离它最近的已定位父级定位浮动能不用就不用,除非…
2021/11/10 23:42:20 人评论 次浏览 -
2.html基础
hover: 1. 中间什么都不加 控制子元素; 2. ‘+’ 控制同级元素(兄弟元素); 3. ‘~’ 控制就近元素; 定位三种:固定定位:相对于浏览器定位相对定位:相对于原本的位置定位(依然会占据原来的空间)绝对定位:相对于离它最近的已定位父级定位浮动能不用就不用,除非…
2021/11/10 23:42:20 人评论 次浏览 -
026.央视官网顶部banner及导航布局
<!DOCTYPE html> <html><head><meta charset="utf-8"><title>2021-11-6</title><style type="text/css">*{padding: 0;margin: 0;}.div1{position: fixed;height: 40px;width: 100%;background-color: blu…
2021/11/6 6:12:11 人评论 次浏览 -
026.央视官网顶部banner及导航布局
<!DOCTYPE html> <html><head><meta charset="utf-8"><title>2021-11-6</title><style type="text/css">*{padding: 0;margin: 0;}.div1{position: fixed;height: 40px;width: 100%;background-color: blu…
2021/11/6 6:12:11 人评论 次浏览 -
jquery基础知识
1.<button class="show">show</button> 改变的是display:none 2.<button class="slideDown">slideDown</button> 改变的是height 3.<button class="fadeIn">fadeIn</button> 改变的是opcity 4.$("…
2021/11/4 23:11:19 人评论 次浏览 -
jquery基础知识
1.<button class="show">show</button> 改变的是display:none 2.<button class="slideDown">slideDown</button> 改变的是height 3.<button class="fadeIn">fadeIn</button> 改变的是opcity 4.$("…
2021/11/4 23:11:19 人评论 次浏览 -
display定位
selenium定位display:none# display:none,block,inlinejs = "document.getElementById("xxx").style.display=block;" # 调用js脚本 driver.execute_script(js) driver.find_element_by_id("xxx").send_keys("xx")小练习: <…
2021/10/30 23:39:41 人评论 次浏览