我试图将我的jboss服务器上的默认端口更改为端口80.
我看过网络,我有建议编辑这个文件jboss5\server\default\deploy\jbossweb.sar\server.xml,这很好.单独更改此文件仍然无法解决问题.
还有人建议也改变这个文件:jboss5\server\default\conf\bootstrap\bindings.xml唯一的问题是我找不到这个binding.xml
binding.xml文件是JBoss 5中的标准吗?或者它已被重命名或更改JBoss 5中的位置.
有没有人有任何明确的步骤将默认端口从8080更改为80.
我有一个表单,除了IE之外,在每个浏览器中看起来都是我想要的.我一直很难搞清楚我需要对css进行哪些调整以使其在IE中看起来正确(并且在所有其他主要浏览器中仍然看起来正确)
我的HTML是:
<td valign="top" align="left">
<form name="postcode" action="plans.php" method="post">
<input type="text" name="c" size=1 class="postcode" onKeyup="autotab(this, document.postcode.o)" maxlength=1>
<input type="text" name="o" size=1 class="postcode" onKeyup="autotab(this, document.postcode.d)" maxlength=1>
<input type="text" name="d" size=1 class="postcode" onKeyup="autotab(this, document.postcode.e)" maxlength=1>
<input type="text" name="e" size=1 class="postcode" maxlength=1>
<br/><br/><br/>
then choose...<br/><br/>
<input name="electricity" type="checkbox" value="electricity" />electricity
<br/>
<input name="gas" type="checkbox" value="gas" />gas
<br/><br/><br/><br/>
<input type="image" src="images/billCompare-view-plans.gif" value ="show plans" >
</p>
</form>
</td>
Run Code Online (Sandbox Code Playgroud)
我的css是:
@charset "UTF-8";
/* CSS Document */
body {
font-size:14px;
font-family:"Century Gothic";
}
.table_header{
font-size:18px;
font-family:"Century …Run Code Online (Sandbox Code Playgroud)