css之常用样式

展示样式一:

<div class="showListBox"><div class="List"  v-for="(i,index) in sealList" :key="index"> <div class="ListItemCon"><div class="ListItem-titleBox"><img src="../img/qygl.png" class="ListItem-titleImg"><div class="ListItem-titleCon">标题</div></div><div class="ListItem-conBox"><div class="ListItem-leftCon"><img src="../img/logo.png" class="ListItem-leftConImg" /></div><div class="ListItem-CenterCon"><div class="ListItem-leftCon-item">当前状态:<span>已通过</span></div><div class="ListItem-leftCon-item">申请时间:<span>2022-12-22</span></div></div><div class="ListItem-rightCon"><img src="../img/gd.png"  class="ListItem-rightConImg"/></div></div></div><div class="top"></div></div></div>
#css
.showListBox{background-color: #fff;.List{.ListItemCon{// 标题.ListItem-titleBox{display: flex;align-items: center;padding:10px 20px;border-bottom:2px solid #f7f7f7;color:#000000;.ListItem-titleImg{width:29px;height:24px;margin-right:5px;}.ListItem-titleCon{text-align: center;font-size:14px;}}// 内容.ListItem-conBox{display: flex;align-items: center;justify-content: space-between;padding:10px 25px;.ListItem-leftCon{.ListItem-leftConImg{width:50px;height:50px;}}.ListItem-CenterCon{.ListItem-leftCon-item{padding:2px 0;span{color: #666;}}}.ListItem-rightCon{.ListItem-rightConImg{width:20px;height:20px;}}}}}
}

展示样式二:

   <div class="showListLineBox"><div class="List"><div class="ListItemCon"><div class="ListItem-titleBox"><div class="ListItem-titleCon">标题</div><div class="ListItem-titleCon">标题</div></div><div class="ListItem-conBox"><div class="ListItem-conBoxOne"><div class="ListItem-leftCon"><div class="ListItem-leftCon-item">申请人:<span>XXX</span></div><div class="ListItem-leftCon-item">申请时间:<span>2022-12-22</span></div></div><div class="ListItem-rightCon"><img src="../img/gd.png" class="ListItem-rightConImg" /></div></div><div class="ListItem-conBoxTwo"><div class="ListItem-conBoxTwo-item">查看</div><div class="ListItem-conBoxTwo-item">删除</div></div></div></div><div class="top"></div></div></div>

//列表样式2: 左边竖线标题,两行内容  //ListItem-titleBox和ListItem-titleBoxs可切换
.showListLineBox {background-color: #fff;// margin:0 10px;.List {.ListItemCon {.ListItem-titleBox {display: flex;justify-content: space-between;border-left: 5px solid #ff6f61;padding: 10px 15px;.ListItem-titleCon {font-size: 14px;color: #000;}}.ListItem-titleBoxs {display: flex;justify-content: space-between;padding: 10px 0;.ListItem-titleConLeft {padding: 0px 15px;border-left: 5px solid #ff6f61;}.ListItem-titleConRight {padding: 0px 15px;}.ListItem-titleCon {font-size: 14px;color: #000;}}.ListItem-conBox {.ListItem-conBoxOne {display: flex;justify-content: space-between;align-items: center;padding: 15px 20px;.ListItem-leftCon {.ListItem-leftCon-item {padding: 5px 0;span {color: #666;}}}.ListItem-rightCon {.ListItem-rightConImg {width: 20px;height: 20px;}}}.ListItem-conBoxTwo {border-top: 2px solid #eee;display: flex;align-items: center;justify-content: flex-end;.ListItem-conBoxTwo-item {padding: 10px 5px;color: #ff6f61;}}}}}
}

展示样式三:

 <div class="showListDotBox"><div class="List"><div class="ListItemCon"><div class="ListItem-titleBox"><img src="../img/title.png" class="ListItem-titleImg" /><div class="ListItem-titleCon">标题</div></div><div class="ListItem-conBox"><div class="ListItem-leftCon"><div class="ListItem-leftCon-item">申请人:<span>XXX</span></div><div class="ListItem-leftCon-item ListItem-leftCon-Lastitem">申请时间:<span>2022-12-22</span></div></div><div class="ListItem-rightCon"><img src="../img/gd.png" class="ListItem-rightConImg" /></div></div></div><div class="top"></div></div></div>

//列表样表3 :标题带圆点,圆形边框
.showListDotBox {margin: 0 10px;.List {.ListItemCon {background-color: #fff;border-radius: 5px !important;.ListItem-titleBox {display: flex;align-items: center;font-size: 14px;padding: 10px;border-bottom: 1px solid #eee;.ListItem-titleImg {width: 10px;height: 10px;padding: 0 5px;}}.ListItem-conBox {display: flex;justify-content: space-between;align-items: center;padding: 15px 20px;.ListItem-leftCon {.ListItem-leftCon-item {padding: 5px 0;span {color: #666;}}.ListItem-leftCon-Lastitem {padding-bottom: 10px;}}.ListItem-rightCon {.ListItem-rightConImg {width: 20px;height: 20px;}}}}}
}

展示样式四:

  

 <div class="showListTipBox"><div class="List"><div class="ListItem"><div class="ListItem-left"><img src="../img/logo.png" alt="" class="ListItem-leftImg" /><div class="ListItem-leftTipBox"><div class="ListItem-leftTitle">标题</div><div class="ListItem-leftTips">简介信息</div></div></div><img src="../img/gd.png" alt="" class="ListItem-rightImg" /></div><div class="top"></div></div></div>
// 列表4:列表三列两列内容,两图一个提示
.showListTipBox {background-color: #fff;.List {.ListItem {display: flex;align-items: center;justify-content: space-between;padding: 10px 15px;.ListItem-left {display: flex;.ListItem-leftImg {width: 50px;height: 50px;margin-right: 10px;}.ListItem-leftTipBox {.ListItem-leftTitle {font-size: 14px;}.ListItem-leftTips {color: #666;padding: 5px 10px;}}}.ListItem-rightImg {width: 20px;height: 20px;}}}
}

 展示样式五:

<div class="showListNormalBox"><div class="List"><div class="ListItemCon"><div class="ListItemCon-leftCon">标题</div><img src="../img/gd.png" alt="" class="ListItemCon-rightImg" /></div><div class="top"></div></div></div>
// 列表5 :日常列表,一个标题,一个查看图片
.showListNormalBox {background-color: #fff;.List {.ListItemCon {display: flex;align-items: center;justify-content: space-between;padding: 10px 15px;.ListItemCon-leftCon {font-size: 14px;}.ListItemCon-rightImg {width: 20px;height: 20px;}}}
}

展示样式六:

 <div class="showInfoNormal"><div class="showInfoNormal-item">申请人:<span>XXX</span></div><div class="showInfoNormal-item">申请时间:<span>2022-12-22</span></div><div class="top"></div></div>
// 内容显示:
.showInfoNormal {.showInfoNormal-item {background-color: #fff;border-bottom: 1px solid #eee;padding: 10px 20px;//  margin:10px 0;span {color: #666;}}
}

 展示样式七:

   <div class="showNormalInputBox"><div class="List"><div class="ListItemCon"><div class="ListItem"><div class="ListItem-title">申请人</div><input type="text" /></div><div class="ListItem"><div class="ListItem-title">印章密码</div><input type="password" /></div><div class="ListItem"><div class="ListItem-titles">手机号</div><input type="number" /></div></div><div class="top"></div></div></div>
// 输入框:   //ListItem-title有必选*,ListItem-titles没有必选*
.showNormalInputBox {.List {.ListItemCon {padding: 10px;.ListItem {padding: 10px;border-bottom: 1px solid #eee;.ListItem-title,.ListItem-titles {font-size: 14px;}.ListItem-title::before {display: inline-block;margin-right: 4px;color: #f5222d;font-size: 14px;font-family: SimSun, sans-serif;line-height: 1;content: "*";}.ListItem-title::after,.ListItem-titles::after {content: ":";position: relative;top: -0.5px;margin: 0 8px 0 2px;padding-right: 5px;}}}}
}

展示样式八:

    <div class="showSelectBox"><div class="showSelectBox-title">选择区域:</div><div class="showSelectBox-select"><select name=""><option>美国</option><option selected="selected">中国</option><option>俄罗斯</option><option>韩国</option></select></div></div>
// 下拉菜单
.showSelectBox {display: flex;align-items: center;// justify-content: center;padding: 10px 15px;.showSelectBox-title {font-size: 14px;width: 80px;}.showSelectBox-select {display: inline-block;}
}

 展示样式九:

 <div class="showButtonBox"><div class="showCircleButton">圆角按钮</div><div class="showSquareButton">方形按钮</div></div>
// 按钮:   showCircleButton圆形按钮,showSquareButton方形按钮,修改bordr可以查看镂空。修改bgc可以查看全部背景
.showButtonBox {// margin-top:20px;display: flex;align-items: center;justify-content: space-around;padding: 10px 0;.showCircleButton {width: 120px;height: 40px;line-height: 40px;background-color: #ed602a;color: #ffff;// border:1px solid #ed602a;// color: #c0c4cc;font-size: 15px;border-radius: 20px;text-align: center;}.showSquareButton {width: 120px;height: 40px;line-height: 40px;background-color: #ed602a;color: #ffff;// border:1px solid #ed602a;// color: #c0c4cc;font-size: 15px;text-align: center;}
}

 展示样式十:

 <div class="showNullDataBox"><div class="showNullImg"><img src="../img/null.png" alt="" /></div><div class="showNullMsg">您还没有申请记录哦~</div><div class="showButtonBox"><div class="showCircleButton">确定</div></div></div>
// 列表数据为空展示
.showNullDataBox {background-color: #fff;.showNullImg {display: flex;align-items: center;justify-content: center;padding: 25px 0;img {width: 220px;height: 168px;}}.showNullMsg {text-align: center;padding-bottom: 25px;}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/738320.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

阿里云ACK的应用服务如何暴露公网并挂载域名

背景介绍 针对部署到阿里云ACK集群的应用服务&#xff0c;实际业务场景可能需要我们暴露其中的服务到公网并要求通过域名访问改服务&#xff0c;那具体在阿里云平台上如何实现呢 配置步骤 新建ack集群是后续工作的第一前提由于篇幅有限就不在本文赘述&#xff0c;如下是基本…

Conmi遇到的坑——禅道的PCDN

好家伙&#xff0c;悄悄在后台吃了七十多G流量&#xff0c;我把你当兄弟宣传&#xff0c;你把我当PCDN吸。 还纳闷今天创建个VUE项目怎么提示D盘没空间&#xff0c;明明留了几十G&#xff0c;好家伙&#xff0c;一下子全吸干了。 删了两个&#xff0c;还有一个

6N137SDM光电耦合器中文资料规格书PDF数据手册引脚图图片价格参数芯片概述

产品概述&#xff1a; 6N137M、HCPL2601M、HCPL2611M 单沟道和 HCPL2630M、HCPL2631M 双沟道包含一个 850 nm AlGaAS LED&#xff0c;与带有可调谐输出的极高速集成式光电探测器逻辑门级进行光耦合。此输出具有一个开路集电极&#xff0c;允许有线 OR 输出。耦合参数在 -40C 至…

QT----计算器

目录 1 搭建标准界面2、 逻辑编写2.1 初始化 1 搭建标准界面 按照下图搭设界面 修改样式让这计算器看起来更像一点&#xff0c;同时对按钮分组进行样式编辑&#xff0c;添加字符串name,为number&#xff0c;其他按键为other。之前的文章里出现过好几次不在赘述 修改最大的样式…

git init 执行后发生了什么?

首先在磁盘中创建一个新目录 Git&#xff0c;进入该目录后执行 git init 初始化。这个时候目录下会创建一个隐藏目录 ./git&#xff0c;这个./git 目录叫做 Git 版本库或者仓库 $ git init Initialized empty Git repository in D:/Git/.git/ 在讲解.git 目录内容前&#xff0…

【SpringBoot3】快速启动框架 快速入门 配置文件

文章目录 SpringBoot3介绍一、快速入门二、入门总结1. 为什么依赖不需要写版本&#xff1f;2. 启动器(Starter)是什么3. SpringBootApplication注解包括的效果&#xff1f; 三、SpringBoot3配置文件3.1 统一配置管理概述3.2 属性配置文件使用3.3 YAML配置文件使用3.4 批量配置文…

【Unity】读取Json的三种方法(JsonUtility,LitJson,Newtonsoft)

介绍 在Unity开发过程中&#xff0c;Json是比较常用的一种数据存储文本&#xff0c;尤其是在和第三方交互中&#xff0c;基本都是json格式。 先给出一个Json示例&#xff0c;我们来看看是如何解析的。 {"Player": [{"id": 1001,"name": "…

SSL---VPN

文章目录 前言一、pandas是什么&#xff1f;二、使用步骤 1.引入库2.读入数据总结 一.SSL-VPN概述 SLL VPN是一种基于HTTPS&#xff08;即支持SSL的HTTP协议&#xff09;的远程安全接入技术。它充分利用了SSL协议提供的基于证书的身份认证、数据加密和消息完整性验证机制&#…

23-Java空对象模式 ( Null Object Pattern )

Java空对象模式 实现范例 在空对象模式&#xff08;Null Object Pattern&#xff09;中&#xff0c;一个空对象取代 NULL 对象实例的检查Null 对象不是检查空值&#xff0c;而是反应一个不做任何动作的关系&#xff0c;这样的 Null 对象也可以在数据不可用的时候提供默认的行为…

maven运行spring boot项目

我用idea想跑一个整合flowable的spring boot项目&#xff0c;但是跑不起来&#xff0c;原因是jdk版本不够高。但是我的idea是2018版本&#xff0c;最高只能支持到jdk11。就想办法不用idea编译、打包、运行项目。因为spring boot是maven项目&#xff0c;所以可以用maven进行打包…

QT文件的读取与插入

实现功能&#xff1a; 1.输入文本到 Line_edit 点击插入&#xff0c;把文本添加到文件末端 2.点击 获取 读取txt文本&#xff0c;将文本内容显示到左边的窗口中 3.双击左边窗口的选项&#xff0c;弹出对话框&#xff0c;跳转到右边 主要介绍一下文件OI的使用 首先用QFile fil…

51单片机基础篇系列-LED灯点亮代码部分

&#x1f308;个人主页: 会编辑的果子君 &#x1f4ab;个人格言:“成为自己未来的主人~” #include<reg52.h> //包含单片机内部寄存器 void main() //&#xff08;&#xff09;{P10xfe;//1111 1110while(1); // } 上面是第一个 LED实验 #include<reg52.h>…

51单片机新建工程

文章目录 前言一、keil新建工程&#xff1f;1.新建文件夹 二、使用步骤1.引入库2.读入数据 总结 前言 提示&#xff1a;这里可以添加本文要记录的大概内容&#xff1a; 课程需要&#xff1a; 提示&#xff1a;以下是本篇文章正文内容&#xff0c;下面案例可供参考 一、keil新…

基于ACM32 MCU的两轮车充电桩方案介绍,有利于打造高效安全的电池管理

随着城市化进程的加快、人们生活水平的提高和节能环保理念的普及&#xff0c;越来越多的人选择了电动车作为代步工具&#xff0c;而两轮电动车的出行半径较短&#xff0c;需要频繁充电&#xff0c;因此在城市中设置两轮车充电桩就非常有必要了。城市中的充电桩不仅能解决两轮车…

【笔记版】cgroup大摸底

云端&#xff1a; subsystem实际上就是cgroups的资源控制系统。 blkio&#xff1a; 这个subsystem可以为块设备设定输入/输出限制&#xff0c;比如物理驱动设备&#xff08;包括磁盘、固态硬盘、USB等&#xff09;。cpu&#xff1a; 这个subsystem使用调度程序控制task对CPU的…

力扣大厂热门面试算法题 12-14

12. 整数转罗马数字&#xff0c;13. 罗马数字转整数&#xff0c;14. 最长公共前缀&#xff0c;每题做详细思路梳理&#xff0c;配套Python&Java双语代码&#xff0c; 2024.03.11 可通过leetcode所有测试用例。 目录 12. 整数转罗马数字 解题思路 完整代码 Java Pytho…

STM32 学习11 独立看门狗与窗口看门狗

STM32 学习11 独立看门狗与窗口看门狗 一、**看门狗概述**二、**STM32中的看门狗类型**1. 独立看门狗&#xff08;IWDG&#xff09;&#xff08;1&#xff09;基本概念&#xff08;2&#xff09;独立看门狗框图&#xff08;3&#xff09;独立看门狗配置步骤&#xff08;4&#…

十大排序算法(冒泡排序、插入排序、选择排序、希尔排序、堆排序、快排、归并排序、桶排序、计数排序、基数排序)

目录 一、冒泡排序&#xff1a; 二、插入排序&#xff1a; 三、选择排序&#xff1a; 四、希尔排序&#xff1a; 五、堆排序&#xff1a; 六、快速排序&#xff1a; 6.1挖坑法&#xff1a; 6.2左右指针法 6.3前后指针法&#xff1a; 七、归并排序&#xff1a; 八、桶…

Linux报错排查-CentOS/BigCloud_Enterprise_Linux系统yum安装kvm报错

Linux运维工具-ywtool 目录 一.系统环境二.问题描述三.问题解决四.其他命令 一.系统环境 系统版本:BigCloud_Enterprise_Linux 7.1 二.问题描述 通过yum安装kvm报错提示: /usr/bin/yum install -y qemu-kvm qemu-img libvirt libvirt-python virt-manager libvirt-client …

系统运维网络知识汇总

一、系统运维中网络方面的规划与思考 系统运维建立在网络的基础之上&#xff0c;如果没有一个相对合理的网络架构&#xff0c;恐怕系统运维做起来也不是那么的顺手。一个公司基本上都会把网络和服务器独立开来&#xff0c;划分不同的区域摆放设备&#xff0c;很多时候都是物理…