This inspection hightlights pure presentational HTML tags and provides the ability to replace them with CSS or with other tags

在使用IDEA工具写HTML标签的时候出现的这个问题提示
如下是相对应的翻译
此检查高亮度纯表示HTML标记,并提供了用CSS或其他标记替换它们的能力

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<title>表格标签</title>
	</head>
	<body><!--
	table 标签是表格标签
	border是设置表格边框
	width是设置表格宽度
	align是设置变革相对于页面的对齐方式
	cellspacing是设置单元格间距
	 tr 是行标签
	 th 是表头标签
	 td 是单元格标签
	 align是设置单元格文本对齐方式
	 b 是加粗标签



	-->
		<table align="center" border="1" width="300" height="300">
			<tr>
				<td align="center"><b>
					1.1
                </b>
				</td>
				<th>1.2</th>
				<td>1.3</td>
			</tr>
			<tr>
				<td>2.1</td>
				<td>2.2</td>
				<td>2.3</td>
			</tr>
			<tr>
				<td>3.1</td>
				<td>3.2</td>
				<td>3.3</td>
			</tr>
		</table>

		
	</body>
</html>

This inspection hightlights pure presentational HTML tags and provides the ability to replace them with CSS or with other tags

上一篇:本地文件上传Gitee


下一篇:用Flask前端框架开发简易网页