我有一个Subversion存储库的两个工作副本,一个trunk,还有一个我创建的分支.
我不小心删除了存储库浏览器中的分支.如何恢复分支?有没有办法撤消整个存储库的最新提交?
我有以下html页面:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>A title</title>
</head>
<body>
<table style="width: 700px; border: solid 1px green">
<tr>
<td style="border: solid 1px red;" colspan="2">A cell with a bunch of text. The amount of text here increases the 'x' cell.<td>
</tr>
<tr>
<td style="width: 100px; border: solid 1px purple;" >x</td>
<td style="border: solid 1px blue;">Some sample text</td>
</tr>
</table>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
在Internet Explorer(8)以外的所有浏览器中,内容为"x"的单元格的宽度为100px,并且相邻的单元格填充表格的其余部分.在Internet Explorer 8中,它相当大一些,它的大小取决于设置了colspan ="2"的单元格中的文本数量.IE中有这个错误吗?