如何在jsp中设置浏览器兼容性?

时间:2014-09-20 06:38:47

标签: jsp google-chrome cross-browser mozilla

我正在开发j2e web应用程序。

当我在firefox中运行我的应用程序(jsp,servlet)时,它显示如下图像。 enter image description here

当我在chrome中运行相同的页面时,它显示如下图像。

enter image description here

我的代码结构是,

     <%@ page language="java" contentType="text/html; charset=UTF-8"
            pageEncoding="UTF-8"%>
     <%@ page import="java.io.*,java.util.*"%>

     <!DOCTYPE>
    or
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/transitional.dtd">

            <html>

            <head>
<style type="text/css">
body{

background-size:1024px 768px;
background-repeat:no-repeat;
background-image: url('styleback.jpeg');


}
</style>

</head>
            <body>
  <div id="mybox" align="left" style="display:none;">

            <form action="ModifyPlannerServlet" method="post" id="ModifyPlannerServletid">
            <div id="SearchDateErrorMsgDiv" style="color: red"></div>
           Select Date : <input type="text" name="dateofSearch" id="dateofSearch" placeholder="Enter Date Here"><br><br>

           <a href="#ListboxDisplayFromDB" id="SearchButtonn"><input type="submit"  value="Search" id="SearchButton" name="SearchButton" disabled ></a>

           </form>
</div>

<div align="center">
<form action="PlannerServlet" method="post" id="PlannerServletid"> 

            <table align="center">

                               <tr>

                                <td><label>Change Chapter</label>
</table>
</form>
</div>

<div id="AddPlannerdiv" align="center">
    <input type="button"  name ="ADDPlanner" id="ADDPlanner" value="Add Planner"  onclick="ArrayScript()" disabled>
    <input type="hidden" value="" id="selectdtext" name="selectdtext">
</div>



            </body>
            </html>

我在jsp中看到了浏览器兼容性,但我不明白如何解决这个问题。

如何解决这个问题?

1 个答案:

答案 0 :(得分:1)

在CSS部分中,您可以使用

html { 
  background: url(styleback.jpeg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}