css四种炫酷科技背景边框,颜色渐变,四角特效

本文介绍了使用CSS实现四种炫酷的科技风格背景边框效果,包括四角无边边框、蓝色科技边框、四角正方形颜色渐变边框以及无角渐变边框,通过具体的代码示例详细展示了实现方法。
摘要由CSDN通过智能技术生成

详见个人博客

1、css四角背景无边边框

在这里插入图片描述
代码如下:

<div class="BoxWrap">
  <div class="horn"></div>  
</div>
.horn{
   
    width: 1000px;
    height: 500px;
    margin: 100px;
    background: linear-gradient(#00faff, #00faff) left top,
		linear-gradient(#00faff, #00faff) left top,
		linear-gradient(#00faff, #00faff) right top,
		linear-gradient(#00faff, #00faff) right top,
		linear-gradient(#00faff, #00faff) left bottom,
		linear-gradient(#00faff, #00faff) left bottom,
		linear-gradient(#00faff, #00faff) right bottom,
		linear-gradient(#00faff, #00faff) right bottom;
	background-repeat: no-repeat;
  background-size: 5px 20px, 20px 5px;
}

qq

2、css四角蓝色边框,科技蓝

在这里插入图片描述
代码如下:

<div class="BoxWrap">
    <div class="horn">
    //四个div分别为四个角上的div
       <div class="lt"></div>
       <div class="rt"></div>
       <div class="rb"></div>
       <div class="lb"></div>
    </div>
.BoxWrap{
   
        width:
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值