栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > Web开发 > Html/CSS > CSS教程

css 实现矩形四个边角加粗的方法

CSS教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

1、工具/原料

  • html
  • css

2、具体实现

效果图

html代码


    

css实现矩形边角加粗

css代码

 body{
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
 }
 .main{
     position: relative;
     width: 400px;
     height: 200px;
     border: 1px solid red;
 }
 .main span:nth-child(1){
     position: absolute;
     left: -5px;
     top: -5px;
     padding: 15px;
     border-style: solid;
     border-color: rebeccapurple;
     border-width: 5px 0 0 5px;
 }
 .main span:nth-child(2){
     position: absolute;
     right: -5px;
     top: -5px;
     padding: 15px;
     border-style: solid;
     border-color: rebeccapurple;
     border-width: 5px 5px 0 0;
 }
 .main span:nth-child(3){
     position: absolute;
     right: -5px;
     bottom: -5px;
     padding: 15px;
     border-style: solid;
     border-color: rebeccapurple;
     border-width: 0 5px 5px 0;
 }
 .main span:nth-child(4){
     position: absolute;
     left: -5px;
     bottom: -5px;
     padding: 15px;
     border-style: solid;
     border-color: rebeccapurple;
     border-width: 0 0 5px 5px;
 }

原理很简单, 只要弄清position:relative,border和left,top之间的关系就可以了

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/215430.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号