html几种美丽的分割线

article/2025/10/14 11:04:35

普通

<HR>

<HR align=center width=300 color=#987cb9 SIZE=1>
align 线条位置(可选left、right、center);width 线条长度;color 颜色;size 厚度

 

特效(效果并不是孤立的,可相互组合)

1、两头渐变透明:
<HR style="FILTER: alpha(opacity=100,finishopacity=0,style=3)" width="80%" color=#987cb9 SIZE=3>


 

2、纺锤形:
<HR style="FILTER: alpha(opacity=100,finishopacity=0,style=2)" width="80%" color=#987cb9 SIZE=10>


 

3、右边渐变透明:
<HR style="FILTER: alpha(opacity=100,finishopacity=0,style=1)" width="80%" color=#987cb9 SIZE=3>


 

4、左边渐变透明:
<HR style="FILTER: alpha(opacity=0,finishopacity=100,style=1)" width="80%" color=#987cb9 SIZE=3>


 

虚线:


<HR style="border:1 dashed #987cb9" width="80%" color=#987cb9 SIZE=1>

双线:


<HR style="border:3 double #987cb9" width="80%" color=#987cb9 SIZE=3>

7、立体效果:
<HR style="FILTER: progid:DXImageTransform.Microsoft.Shadow(color:#987cb9,direction:145,strength:15)" width="80%" color=#987cb9 SIZE=1>


 

 

CSS渲染<hr>

<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<style>
/* Red border */
hr.new1 {border-top: 1px solid red;
}/* Dashed red border */
hr.new2 {border-top: 1px dashed red;
}/* Dotted red border */
hr.new3 {border-top: 1px dotted red;
}/* Thick red border */
hr.new4 {border: 1px solid red;
}/* Large rounded green border */
hr.new5 {border: 10px solid green;border-radius: 5px;
}
</style>
</head>
<body><h2>Style HR</h2>
<p>Default:</p>
<hr>
<p>Different styles of HR:</p>
<hr class="new1">
<hr class="new2">
<hr class="new3">
<hr class="new4">
<hr class="new5"></body>
</html>

 

 

 

 

 

8、钢针效果:
<HR style="FILTER: progid:DXImageTransform.Microsoft.Glow(color=#987cb9,strength=10)" width="80%" color=#987cb9 SIZE=1>


垂直分割线

<table border="1px" cellpadding="0" cellspacing="0" style="height:265px;border-left-style:solid; border-bottom-style:none;border-right-style:none;border-top-style:none">

其他

body{background-color: #f0f0f0;width: 700px;float: center;
}hr.style1{border-top: 1px solid #8c8b8b;
}hr.style2 {border-top: 3px double #8c8b8b;
}hr.style3 {border-top: 1px dashed #8c8b8b;
}hr.style4 {border-top: 1px dotted #8c8b8b;
}hr.style5 {background-color: #fff;border-top: 2px dashed #8c8b8b;
}hr.style6 {background-color: #fff;border-top: 2px dotted #8c8b8b;
}hr.style7 {border-top: 1px solid #8c8b8b;border-bottom: 1px solid #fff;
}hr.style8 {border-top: 1px solid #8c8b8b;border-bottom: 1px solid #fff;
}
hr.style8:after {content: '';display: block;margin-top: 2px;border-top: 1px solid #8c8b8b;border-bottom: 1px solid #fff;
}hr.style9 {border-top: 1px dashed #8c8b8b;border-bottom: 1px dashed #fff;
}hr.style10 {border-top: 1px dotted #8c8b8b;border-bottom: 1px dotted #fff;
}hr.style11 {height: 6px;background: url(http://ibrahimjabbari.com/images/hr-11.png) repeat-x 0 0;border: 0;
}hr.style12 {height: 6px;background: url(http://ibrahimjabbari.com/images/hr-12.png) repeat-x 0 0;border: 0;
}hr.style13 {height: 10px;border: 0;box-shadow: 0 10px 10px -10px #8c8b8b inset;
}hr.style14 { border: 0; height: 1px; background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0); 
}hr.style15 {border-top: 4px double #8c8b8b;text-align: center;
}
hr.style15:after {content: '\002665';display: inline-block;position: relative;top: -15px;padding: 0 10px;background: #f0f0f0;color: #8c8b8b;font-size: 18px;
}hr.style16 { border-top: 1px dashed #8c8b8b; 
} 
hr.style16:after { content: '\002702'; display: inline-block; position: relative; top: -12px; left: 40px; padding: 0 3px; background: #f0f0f0; color: #8c8b8b; font-size: 18px; 
}hr.style17 {border-top: 1px solid #8c8b8b;text-align: center;
}
hr.style17:after {content: '§';display: inline-block;position: relative;top: -14px;padding: 0 10px;background: #f0f0f0;color: #8c8b8b;font-size: 18px;-webkit-transform: rotate(60deg);-moz-transform: rotate(60deg);transform: rotate(60deg);
}hr.style18 { height: 30px; border-style: solid; border-color: #8c8b8b; border-width: 1px 0 0 0; border-radius: 20px; 
} 
hr.style18:before { display: block; content: ""; height: 30px; margin-top: -31px; border-style: solid; border-color: #8c8b8b; border-width: 0 0 1px 0; border-radius: 20px; 
}

 

 

华丽的分割线(逃)

 

 

◆*.◆*.◆*.◆*.◆*.◆*.◆*.◆*.◆*.◆*.


★,,♫◦★,,♫◦★,,♫◦★,,♫◦★,,♫◦★,,♫◦★,,♫◦★,,♫◦


__♥_♠_ ♦---♦ _♠_♥__"" __♥_♠_ ♦---♦ _♠_♥__


>♥★◦° ★◦° ★◦° ★◦° ★◦° ★◦° ★◦° ★◦° ★◦° ★◦°♥< ▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►▪▫►


*☻;:*♥+ゞ*☻;:*♥+ゞ*☻;:*♥+ゞ*☻;:*♥+ゞ*☻;:*♥+ゞ


♣◊▪▫⇔♣◊▪▫⇔ ♣◊▪▫⇔ ♣◊▪▫⇔ ♣◊▪▫⇔ ♣◊▪▫⇔


°o‧° °o‧° °o‧° °o‧° °o‧° °o‧° °o‧° °o‧° °o‧°


.★° .★° .★° .★° .★° .★° .★° .★°


☆°.﹒☆°.﹒ ☆°.﹒ ☆°.﹒ ☆°.﹒ ☆°.﹒


≧﹏≦ ≧﹏≦ ≧﹏≦ ≧﹏≦ ≧﹏≦ ≧﹏≦ ≧﹏≦ 


○( ̄﹏ ̄)○ ○( ̄﹏ ̄)○ ○( ̄﹏ ̄)○ ○( ̄﹏ ̄)○ ○( ̄﹏ ̄)○


∩﹏∩*∩﹏∩*∩﹏∩*∩﹏∩*∩﹏∩*∩﹏∩*∩﹏∩*


●▂● ●▂● ●▂● ●▂● ●▂● ●▂● ●▂● ●▂● ●▂●


★〃☆﹋★〃☆﹋★〃☆﹋★〃☆﹋★〃☆﹋★〃☆﹋


,.*♠(||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||)♠,.*

★〞☆〞★〞☆〞★〞☆〞★〞☆〞★〞☆〞★〞☆〞


>>>> +* ++++++++ *+ <<<<


*.;:。ˍ+.,:☆:﹉*.;:。ˍ+.,:☆:﹉*.;:。ˍ+.,:☆:﹉*.*.;:。


χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ,.*,.χ


♨*,.*,.*ˍˍˍˍˍˍˍˍˍˍˍˍˍˍˍ*,.*,.* ♨


♣,.*。°♣,.*。°♣,.*。°♣,.*。°♣,.*。°♣,.*。°♣,.*。°♣,.*。°


♀﹌★♂﹋☆♀﹌★♂﹋☆♀﹌★♂﹋☆♀﹌★♂﹋☆


☻,*.,*.☺☻,*.,*.☺☻,*.,*.☺☻,*.,*.☺☻,*.,*.☺☻,*.,*.☺


*,.*♫_____________________♪____________________♫*,.*


[☼*,.,.**,.,.*,.,.**,.,.*,.,.**,.,.*,.,.**,.,.*,.,.**,.,.*,.,.**,.,.*☼]


♥,.*,.♥,.*,.♥,.*,.♥,.*♥,.*,.♥,.*,.♥,.*,.♥,.*,.♥,.*,.♥,.*,.♥,.*,.♥


?*,.*?*,.*?*,.*?*,.*?*,.*?*,.*?*,.*?*,.*?*,.*?*,.*?*,.*?


*,.▤‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥‥▤,.*


[▧,*.▧]﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍﹍[▧,*.▧]


(▦*,*.*▦––––––––––––––––––––▦*,*.*▦)


★*"`'*-.,_,.-*'`"*-.,_☆,.-*`'`*-.,_,.-*`'`*★-.,_,.-*`


∴°﹒☆°.﹒°∴°﹒★°.﹒∵‧°∴°﹒☆°°∴°﹒﹒‧°∴°﹒☆°


♫˚♪• ♫˚♪• ♫˚♪• ♫˚♪•♫˚♪• ♫˚♪• ♫˚♪• ♫˚♪• ♫˚♪•♫˚♪•


☆彡☆。.:*:?'゜★。、:*:。☆彡☆。.:*:?'゜★。、:*:。☆。


╭☆╭★╭♬ ╭☆╭★╭♬ ╭☆╭★╭♬ ╭☆╭★╭♬


♥♫o‧°♥∴☆ ♥‧°☆∴°★‧° ♥♫o‧°♥∴☆ ♥‧°☆∴♥♫o‧


.﹒‧°∴°☆.﹒‧°∴°﹒☆°.﹒‧°∴°☆.﹒‧°∴°☆


─═★:;*─═☆:;*─═★:;*─═☆:;*─═★:;*─═☆:;*


∴°﹒:+:-*-*-*-*-*-*-*-*-*☆★☆*-*-*-*-*-*-*-*-*-*-*-*:+:‧°∴


☆-:+:-:+:-:+:-:+:-:+:-:+:-:+:-:+:-:+:-:+:-☆


★-:+:-:+:-:+:-:+:-:+:-:+:-:+:-:+:-:+:-:+:-★


☆﹌★★﹌☆﹋★★﹌☆﹋★★﹌☆﹋★★﹌☆﹋★★

〝*﹉◇﹊◆﹉*﹊◇﹊◆﹉**﹉◆﹊◇◇﹉*〞


,.*♠( *-…… ::::--------------…… -------------::::…… -* )♠*.,


:*:・・:*:・゚・:,。*:..。o○:*:・・:*:・:*:・・:*:・゚・:,。*:..。o○:*:・・:*:・


★×**×★☆×**×★☆×**×★☆×**×★☆×**×★☆×**×★


≡※≡※≡※≡※≡※≡※≡※≡※≡※≡※≡※≡※≡※≡※≡※


Ψ ╬ Ψ ╬ Ψ ╬ Ψ ╬ Ψ ╬ Ψ ╬ Ψ ╬ Ψ ╬ Ψ ╬


↗☆★ ↙ ↗☆★ ↙↗☆★ ↙↗☆★ ↙↗☆★ ↙


゚・*:.。. .。.:*・゚・:,。゚・:,。★゚・:,。゚・:,。☆゚・*:.。. .。.:*・゚


☻ ☺ ☼ ☻ ☺ ☼ ☻ ☺ ☼ ☻ ☺ ☼ ☻ ☺ ☼ ☻ ☺ ☼


ੀ;:*彡ౄ:*.:ੀ;:*彡ౄ:*.:ੀ;:*彡ౄ:*.:ੀ;:*彡ౄ:*.:


๑ ๑ ๑ ๑ ๑ ๑ ๑ ๑ ๑ ๑ ๑ ๑


゚・*:.。. .。.:*・:;;::*:。o○゚・*:.。. .。.:*・:;;::*:。o○


☆¤·.¸¸.·´¯`·.¸¸.¤☆๑Nop๑☆¤·.¸¸.·´¯`·.¸¸.¤☆


~ ○( º ㉦ º )○ ~ ○( º ㉦ º )○ ~ ○( º ㉦ º )○ ~ ○( º ㉦ º )○ ~


ౄ?:;;::*:ஃ:.;ౄ?:;;::*:ஃ:.;ౄ?:;;::*:ஃ:.;ౄ?:;;::*:ஃ:.;


o(๕_๕) ♥ (๖_๖)o o(๕_๕) ♥ (๖_๖)o o(๕_๕) ♥ (๖_๖)o o(๕_๕) ♥ (๖_๖)o


阿(。 ̄O ̄)!~ 彌(。 ̄= ̄)!~ 陀(。 ̄□ ̄)!~ 佛(。 ̄△ ̄)!~


☆~※~★~☆~※~★~☆~※~★~☆~※~★~☆~※~★~


\☆\★/☆\★/☆\★/☆\★/☆\★/☆\★/


◇。☆。.0◇。☆。.0◇。☆。.0◇。☆。.0


`*-.,.-*`♩`*-.,.-*`♪`*-.,.-*`♫`*-.,.-*`♬`*-.,.-*`♩`*-.,.-*`♪`*-.,.-*`♫`*-.,.-*`


≡≡≡≡≡≡≡≡≡≡≡≡≡≡▶▷►◈◄◀◁≡≡≡≡≡≡≡≡≡≡≡≡≡≡


‧°∴°﹒☆°.♥‧°∴°☆.﹒♥‧°∴°﹒☆°.♥‧°∴°☆.﹒♥


♩≡ ♪ ≡♫ ≡♬≡♩≡ ♪≡ ♩≡ ♪ ≡♫ ≡♬≡♩≡ ♪≡ ♩≡ ♪ ≡♫ ≡♬≡


☆彡.*゜★彡.*゜☆彡.*゜★彡.*゜☆彡.*゜★彡.*゜☆彡.*゜★彡.*゜


∮╬☻╬☺╬∮╬☻╬☺╬∮╬☻╬☺╬∮╬☻╬☺╬∮╬☻╬☺╬


☜♣☞‧☜♣☞‧☜♣☞‧☜♣☞‧☜♣☞‧☜♣☞‧☜♣☞‧


※ § ? ※ § ? ※ § ? ※ § ? ※ § ? ※ § ? ※ § ?


─═♤═─‧─═♥═─‧─═♤═─‧─═♥═─‧─═♤═─


×°★×╳×∮°≠╭★×°★×╳×∮°≠╭★×°★×╳×∮°≠╭★


【↙☆】∥♀〃♂∥【↙☆】∥♀〃♂∥【↙☆】∥♀〃♂∥

.·°∴ ☆..·°.·°∴ ☆..·°.·°∴ ☆..·° 


– ‐‐——– ‐‐—— 


━┉… ●━━……━━● …┉━ 


…·~·…οΟ○ の ○Οο…·~·… 

.*""*.·°∴ ☆…·…·…·…·…·…·…·☆..·°*""*. 

++++++++++++++++++++++++ 


#。。。#。。。#。。。#。。。#。。。#。。。#。。。# 

*═—═—═—**═—═—═—* 


-------∽-★-∽------∽-★-∽-------- 

□■□■□■□■□■□■□■□■□■□■□ 
╰☆╮            ╰★╮ 


*═—═—═—* の*═—═—═—* 
_ ? ▁ ▂ ▃ ▄ ; ▆ ▇ █ ▏ ▎ ▍ ▌ ▋ ▊ ▉ ◢ 

*...*...*. ..*...*...* 

→☆→☆→☆→☆→ ←★←★←★←★←★← 

╠═╬═╬═╬═╬ ═╬═╬═╬═╬═╬═╣ 

☆.☆.☆.☆.☆. ☆.☆.☆.☆.☆.☆. 

★~☆·☆.~*∴*~★*∴ *·∴~*★*∴*★~☆·☆.~*∴*~★ 


☆°.·∴°♀? ·★° .·♂?∴°☆°.·∴°♀? ° 


?~。~。~。~。~。~。 ~。~。~。~。~。~。~。~? 

╔*~◤◆☆..... .......☆◆◢~*╗


 


http://chatgpt.dhexx.cn/article/ypOU4prq.shtml

相关文章

Python机器学习基础教程

Python机器学习教程 第一章&#xff1a;对于机器学习&#xff0c;我们选择了Python 第二章&#xff1a;了解SciPy、Pandas 持续更新 ... ...

[机器学习实战] 机器学习基础

1. 机器学习的主要任务&#xff1a;&#xff08;分类、回归&#xff09;有监督学习、&#xff08;聚类、密度估计&#xff09;无监督学习 2. 如何选择合适算法&#xff1a;使用机器学习的目的&#xff1b;需要分析的数据是什么&#xff1b;——分类、回归、聚类还是密度估计&am…

机器学习基本概念

本文首先介绍机器学习的基本流程&#xff0c;然后针对机器学习涉及的数据、算法和评估这三个方面用到的基础概念进行介绍。 1.机器学习流程 机器学习是一个数据流转、分析以及得到结果的过程&#xff0c;它的整个流程大致可以分为六个步骤&#xff0c;按照数据流自上而下的顺…

机器学习基础——损失函数与风险函数

机器学习的目标是从模型的假设空间中选取最优的模型&#xff0c;其具体的策略有经验风险最小化和结构风险最小化。下面简单介绍损失函数和风险函数的相关概念。参考自李航《统计学习方法》。 损失函数 损失函数(loss function)用来预测模型单次预测的好坏&#xff0c;即模型的…

机器学习基础知识之概率论基础详解

机器学习基础知识之概率论基础详解 文章目录 机器学习基础知识之概率论基础详解引言一、随机事件以及其运算1、样本空间的概念2、随机事件3、随机变量4、事件之间的关系4.1包含关系4.2相等关系4.3互不相容 5、事件间的运算5.1并5.2交5.3差5.4对立事件5.5运算性质 6、事件域 二、…

【机器学习基础】机器学习模型与算法最全分类汇总!

机器学习 Author&#xff1a;louwill Machine Learning Lab 本文总共涉及了26种机器学习模型与算法&#xff0c;几乎涵盖了全部主流的机器学习算法。包括线性回归、逻辑回归、Lasso回归、Ridge回归、线性判别分析、近邻、决策树、感知机、神经网络、支持向量机、AdaBoost、GBDT…

python基础教程免费下载-《Python机器学习基础教程》高清版免费PDF下载

Python机器学习基础教程-[德] 安德里亚斯穆勒(Andreas C.Mller)[美]莎拉吉多(Sarah Guido) 著,张亮(hysic) 译 下载地址1:网盘下载 下载地址2:网盘下载 内容简介 本书是机器学习入门书,以Python语言介绍。主要内容包括:机器学习的基本概念及其应用;实践中常用的…

机器学习开发框架

目录 目录 1.什么是机器学习开发框架 2.机器学习框架和深度学习框架的关系 3.常见深度学习框架 1.什么是机器学习开发框架 机器学习开发框架本质上是一种编程库或工具&#xff0c;目的是能够让开发人员更容易、更快速地构建机器学习模型。 机器学习开发框架封装了大量的可…

《Python机器学习基础教程》学习记录(一)

开篇 为了提升自己&#xff0c;准备学习《Python机器学习基础教程》作者: [德]安德里亚斯穆勒 / [美]莎拉吉多&#xff0c;译者: 张亮 &#xff1b;写此博客&#xff0c;用作记录书中的代码&#xff0c;学习心得等。 第一章 1.4.4 matplotlib matplotlib 是Python 主要的科学…

【机器学习基础】9 大主题!机器学习算法理论面试题大汇总

机器学习是一门理论性和实战性都比较强的技术学科。在应聘机器学习相关工作岗位时&#xff0c;我们常常会遇到各种各样的机器学习问题和知识点。 算法理论基础不仅包含基本概念、数学基础&#xff0c;也包含了机器学习、深度学习相关。今天给大家推荐一个不错的算法理论基础面试…

机器学习数学基础

目录 1 线性代数1.1 矩阵定义1.2 矩阵中的概念1.2.1 向量 1.3 矩阵的运算1.4 矩阵的转置1.5 矩阵的逆 2 微积分2.1 导数的定义2.2 偏导数2.3 方向导数2.4 梯度2.5 凸函数和凹函数 3 概率统计3.1 常用统计变量3.1.1 数学期望和大数定律3.1.2 协方差3.1.3 相关系数 3.2 常见概率分…

图解机器学习算法(1) | 机器学习基础知识(机器学习通关指南·完结)

作者&#xff1a;韩信子ShowMeAI教程地址&#xff1a;https://www.showmeai.tech/tutorials/34本文地址&#xff1a;https://www.showmeai.tech/article-detail/185声明&#xff1a;版权所有&#xff0c;转载请联系平台与作者并注明出处 1. 机器学习概述 1&#xff09;什么是机…

机器学习基础思维导图

机器学习基础思维导图

机器学习基础学习笔记

机器学习基础 一、机器学习概述 机器学习直白来讲&#xff0c;是根据已有的数据&#xff0c;进行算法选择&#xff0c;并基于算法和数据构建模型&#xff0c;最终对未来进行预测&#xff1b;输入一组数据X-Y&#xff0c;想要得到X-Y间的一个目标函数 f 。根据大量历史数据&am…

机器学习入门——机器学习基础概念

引言 本文介绍机器学习的一些基本概念。包括机器学习的主要任务&#xff0c;机器学习的分类等。 下一篇&#xff1a;机器学习入门——numpy与matplotlib的使用简介 用到的数据 鸢尾花(IRIS)是比较常见的在我们学习机器学习时用到的数据。数据来源: http://archive.ics.uci.e…

机器学习的数学基础

一、概述 我们知道&#xff0c;机器学习的特点就是&#xff1a;以计算机为工具和平台&#xff0c;以数据为研究对象&#xff0c;以学习方法为中心&#xff1b;是概率论、线性代数、数值计算、信息论、最优化理论和计算机科学等多个领域的交叉学科。所以本文就先介绍一下机器学…

机器学习基础环境部署 | 机器学习系列

目录 前言 Anaconda安装 使用conda配置python3.6环境 Spyder配置与使用 安装PyTorch 总结 前言 本文主要是分享一下机器学习初期&#xff0c;基本的环境搭建。也适用于其他python工程化项目环境搭建。都差不多。 Anaconda安装 anaconda官方链接&#xff1a;Anaconda | T…

机器学习基础(Machine Learning,ML)

什么是机器学习 机器学习是人工智能的一个子集&#xff0c;目前已经发展出许多有用的方法&#xff0c;比如支持向量机&#xff0c;回归&#xff0c;决策树&#xff0c;随机森林&#xff0c;强化方法&#xff0c;集成学习&#xff0c;深度学习等&#xff0c;一定程度上可以帮助人…

机器学习基础

一、机器学习概述 1.1 人工智能概述 1.人工智能起源&#xff1f; 图灵测试、达特茅斯会议 2.人工智能的3个阶段 1980年代是正式形成期 1990-2010年代是蓬勃发展期 2012年之后是深度学习期 3.人工智能、机器学习和深度学习之间的关系 机器学习是人工智能实现的一个途径; 深度学…

机器学习基础知识

文章目录 概述一、机器学习分类1.1 主要任务1.2 分类方式1.3 监督学习1.3.1 判别式模型1.3.2 生成式模型 1.4 无监督学习1.4.1 聚类1.4.2 降维 1.5 深度学习1.6 强化学习 二、机器学习步骤三、模型评估指标3.1 分类问题3.2 回归问题 四、机器学习预备知识4.1 数学基础4.2 Pytho…