Home >Web Front-end >HTML Tutorial >360 browser compatibility issues_html/css_WEB-ITnose

360 browser compatibility issues_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:09:221142browse

 .style1        {            width: 100%;            background-color: #CCFFCC;        } <table id="tableselect" class="style1">            <tr style="width: 770px;"><td style="width: 302px;">                    <input type="checkbox" id="isbydate" />                    拉丝时间:                    <input id="txtbegin" class="inputwidth" type="date" disabled="disabled" />                    ~                    <input id="txtend" class="inputwidth" type="date" disabled="disabled" />                </td> </tr>        </table>


The effects that appear in other browsers are [img=http://img.my.csdn.net/uploads/201204/01/1333244188_3125.jpg]a[ /img]


But in the 360 ​​browser it is: [img=http://img.my.csdn.net/uploads/201204/01/1333244181_7805.jpg]a[/img]


Reply to discussion (solution)

The width is not enough, increase the width.

<!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"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>无标题文档</title></head><body><style>.style1{width: 100%; background-color: #CCFFCC;}</style><div class="style1">	<table id="tableselect" border="0" cellspacing="1" cellpadding="3" width="770">		<tr>			<td width="435">				<input type="checkbox" id="isbydate" />				拉丝时间:				<input id="txtbegin" class="inputwidth" type="date" disabled="disabled" />				~				<input id="txtend" class="inputwidth" type="date" disabled="disabled" />			</td>			<td width="335"></td>		</tr>	</table></div></body></html>

Problem solved, thank you

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn