当前位置: 首页 > article >正文

CSS给元素的四个角添加边框

Css给元素的四个角添加边框

实现一:

<div class="border"></div>	
/*使用线性渐变背景表示  left top 表示左上角*/
.border{
	background:
          linear-gradient(to left, #04c886, #04c886) left top no-repeat,
          linear-gradient(to bottom, #04c886, #04c886) left top no-repeat,
          linear-gradient(to left, #04c886, #04c886) right top no-repeat,
          linear-gradient(to bottom, #04c886, #04c886) right top no-repeat,
          linear-gradient(to left, #04c886, #04c886) left bottom no-repeat,
          linear-gradient(to bottom, #04c886, #04c886) left bottom no-repeat,
          linear-gradient(to left, #04c886, #04c886) right bottom no-repeat,
          linear-gradient(to left, #04c886, #04c886) right bottom no-repeat;
 		/*10px是长度 1px是粗细*/
        background-size:
          1px 10px,
          10px 1px,
          1px 10px,
          10px 1px;
}

实现二:在元素四周各绝对定位一个块级元素,给这个元素添加对应的边框即可。相对简单,代码不再演示。


http://www.kler.cn/a/406101.html

相关文章:

  • nvm安装node遇到的若干问题(vscode找不到npm文件、环境变量配置混乱、npm安装包到D盘)
  • 网络安全,文明上网(6)网安相关法律
  • 大语言模型---LoRA中损失值的计算
  • 【2024亚太杯亚太赛APMCM C题】数学建模竞赛|宠物行业及相关产业的发展分析与策略|建模过程+完整代码论文全解全析
  • 六大核心应用场景,解锁AI检测系统的智能安全之道
  • Docker 容器的初始化设置
  • 《Django 5 By Example》阅读笔记:p651-p678
  • Python学习32天
  • LeetCode 101题集(随时更新)
  • 【Python】【持续项目】Python-安全项目搜集
  • AI、VR与空间计算:教育和文旅领域的数字转型力量
  • 《数字图像处理基础》学习06-图像几何变换之最邻近插值法缩小图像
  • C语言:strcpy
  • OpenCV和Qt坐标系不一致问题
  • window 中安装 php 环境
  • 云高性能计算 CHPC :基因研究的加速器(二)使用Docker工作流示例
  • PID多变量解耦控制
  • Spring Boot3.x自动配置不生效的排查与解决:IDEA 文件夹命名导致的问题
  • 大数据学习17之Spark-Core
  • wordpress二开-WordPress新增页面模板-说说微语
  • 深入理解TensorFlow中的形状处理函数
  • 鸿蒙MVVM模式介绍与使用
  • 数字IC后端笔试面试题库 | 经典时序Timing计算题
  • 解决复杂查询难题:如何通过 Self-querying Prompting 提高 RAG 系统效率?
  • 如何创建软件设计文档(+方法步骤)
  • Admin.NET框架前端由于keep-alive设置缓存导致的onUnmount未触发问题