标记文本 突出显示的文本由于其相关性在另一个上下文中,使用<mark>标记. You can use the mark tag to highlight text. You can use the mark tag to <mark>highlight</mark> text. 被删除的文本 对于被删除的文本使用 <del> 标签. This line of text is meant to be treated as deleted text. <d…
一.JSP标签介绍 1. 标签库有什么作用 自定义标签库是一种优秀的表现层技术,之前介绍的MVC模式,我们使用jsp作为表现层,但是jsp语法嵌套在html页面,美工还是很难直接参与开发,并且jsp脚本和html代码耦合在一起,维护成本较高.我们能不能开发一套和html风格类似并且能完成jsp脚本功能的标签来解决这种低效的协作方式呢?于是标签库就诞生了. 2. 标签的继承体系 3. 相关类的介绍 3.1 Tag /** * The interface of a classic tag handl…
伪类的格式重点:父标签层级 & 当前标签类型 通过例子说明: css1: span:nth-of-type(2){color: red;} css2: span :nth-of-type(2){color: red;} html: <p> <span>I have an apple</span> <i>I have an orange</i> <strong>I have a banana</strong> <…