“<”特殊符号写法

摘要:
1˂!
 1 <!DOCTYPE html>
 2 <html>
 3 <head>
 4 <meta charset="utf-8">
 5 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
 6 <title>特殊符号</title>
 7 <style type="text/css">
 8 .ina_an a span{ position:relative; margin:0px 8px 0; vertical-align:-2px;}
 9 .ina_an a span:before{content:"";font-size:0;width:0;height:0;line-height:0;overflow:hidden;display:inline-block;*display:inline;*zoom:1;border:0 dashed transparent;border-width:6px;border-left-style:solid;border-left-color:#666666;position:absolute;top:0px;left:0px;}
10 .ina_an a span:after{content:"";font-size:0;width:0;height:0;line-height:0;overflow:hidden;display:inline-block;*display:inline;*zoom:1;border:0 dashed transparent;border-width:6px;border-left-style:solid;border-left-color:#ebecee;position:absolute;top:0px;left:-2px;}
11 </style>
12 </head>
13 <body>
14     <div class="ina_an">
15         <a href=""><span></span></a>
16     </div>
17 </body>
18 </html>

方法二,京东左侧目录条

免责声明:文章转载自《“&amp;lt;”特殊符号写法》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇Zend Studio 默认模板和输入代码提示时间的修改方式重写equals方法下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

分页(模仿百度)

这次分页时上次分页的升级版,分页格式模仿百度,使用的是原生JS 话不多说,直接看代码吧 <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>分页</title> <style> #Data...

学习CSS之用CSS绘制一些基本图形

一、三角形 如下图,通过设置 border 的大小和颜色可以形成四个三角形: 上图对应的代码为: /*三角形*/ .triangle{ 0; height:0; border-top:100pxsolidgreen; border-right:100pxsolidred; border-bottom:100pxsolidblue; border-lef...

巧用hover改变css样式和背景

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <script src="jquery-3.2.1.js"></script...

Makefile中一些特殊符号的意义

在makefile中,有时会接触到一些以特殊字符打头的命令,比如@, -, +,如果之前没有接触过的话,会感觉比较奇怪,其实,多是一些为了实现特定行为模式而引入的标记符。 命令行以'@'打头的含义: 在执行到的时候不回显相应的命令内容,只显示命令的输出。 命令行以'-'打头的含义: 在执行到的时候如果发生错误(退出返回非零状态)时,不中断make过程。 命...

【php5权威编程-1】

 public/private/protected 访问修饰符,针对对象中的方法和属性。 <?php class MyClass { private $id = 18; public function getId() { return $this->id; } } $obj = new My...

4、HTML和CSS进阶知识

HTML和CSS进阶知识 一、HTML中常用的块元素(block)和行内元素(inline)   常见的块元素(block):p、h1--h6、div、ul、ol、dl、hr   常见的行内元素(inline):b、i、em、strong、small、sub、sup、a、span、br、   在css中,可以通过display属性实现block元素和inl...