(待解决问题)nowrap在table和td都设置了宽度的时候仍然有效

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

<!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>Insert title here</title>

<style type="text/css">

</style>

</head>

<body>

<div>

<table width="200" border="1">



  <tr>

  	<td style="word-break:break-all">shfhjkasdgasfjgajskgdfjgdjasgfjasgfjkasgfjkasgdfjkgasjdkg</td>

    <td width="100" nowrap> 我终于明白,我其实有一条韧性十足的命,它远比我想象中的那条命结实得多、耐磨的多</td>

    <td>Never increase, beyond what is necessary, the number of entities required to explain anything</td>

  </tr>

</table>

</div>

</body>

</html>

 

你可能感兴趣的:(table)