首页 > Web开发 > 详细

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

时间:2021-04-12 12:26:36      阅读:22      评论:0      收藏:0      [点我收藏+]

在使用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

原文:https://www.cnblogs.com/lijiacheng/p/14647205.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!