天天看點

13-應用删除線标記商品特價(文字及清單樣式)

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>應用删除線樣式标記商品特價</title>
<style type="text/css">
font {
	font-size: 12px;
	color: red;
	text-decoration: line-through;
}

table {
	font-size: 12px;
	background-color: threedface;
	border: 1px solid;
}
</style>
</head>

<body>
	<table>
		<tr>
			<td><font>98.00元</font></td>
		</tr>
	</table>
</body>
</html>
           
13-應用删除線标記商品特價(文字及清單樣式)