100分紧急求助,恳请各位朋友帮帮忙,谢谢~
框架问题:
1、框架的边框样式:
我的框架边框看起来总是凸出来的,很不舒服,能不能像CSDN一样,让人感觉很平稳,不凸也不凹,请问有这样的样式属性吗?谢谢!
2、框架头部的导航栏内容如何自动缩放?我窗口一缩小点,我的导航菜单内容就看不见了,必须要最大化才能看见全部菜单!
附:
我的框架集:
<frameset rows= "20%,80% " framespacing= "0 " border= "0 " bordercolor= "#e8ffe8 ">
<frame src= "URTop.aspx " name= "top " scrolling= "no " marginhight= "5 " marginwidth= "5 " noresize>
<frameset cols= "18%,82% " framespacing= "2 " border= "1 " frameborder= "yes " bordercolor= "#e8ffe8 ">
<frame src= "URMain.aspx " name= "main ">
<frame src= "URContent.aspx " name= "content ">
</frameset>
</frameset>
我的导航菜单内容:
<body bgcolor= "#e8ffe8 ">
<form id= "form1 " runat= "server ">
<table style= "width:100%;height:100% " align= "center " cellpadding= "0 " cellspacing= "1 ">
<tr width = 100%; height = 20%>
<table width= "100% " border= "1 " cellpadding= "0 " cellspacing= "0 ">
<tr height = "80% " width = "100% ">
<td nowrap= "nowrap " height = "92 " width = "100 "> <embed src= "URImage/URClock.swf " height = "92 " width = "100 "> </embed> </td>
<td nowrap= "nowrap " height = "92 " width = "890 "> <img src= "URImage/URCSIMIS.gif "> </td>
</tr>
</table>
<table width= "100% " border= "1 " cellpadding= "0 " cellspacing= "0 ">
<tr height = "20% " width = "100% ">
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <div id= "time " style= "font-size:small ">
<script type= "text/javascript "> setInterval( "time.innerHTML=(new Date().toLocaleString()+ ' 星期 '+ '日一二三四五六 '.charAt(new Date().getDay())).substr(0,24); ",1000);
</script> </div> </div>
</td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "URIndex.html " target= "_parent "> 网站首页 </a> </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "URBaseInfo/URBaseInfo.aspx " target= "main "> 基础信息 </a> </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "URPubDic/URPubDic.aspx " target= "main "> 公用字典 </a> </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "URLocalDic/URLocalDic.aspx " target= "main "> 本地字典 </a> </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "UR_JKDA/UR_JKDA.aspx " target= "main "> 健康档案管理 </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "UR_JKBJ/UR_JKBJ.aspx " target= "main "> 健康保健管理 </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "UR_JHSY/UR_JHSY.aspx " target= "main "> 计划生育管理 </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "UR_JBGL/UR_JBGL.aspx " target= "main "> 疾病管理 </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "UR_JBYF/UR_JBYF.aspx " target= "main "> 疾病预防管理 </font> </div> </td>
<td height= "10 " nowrap= "nowrap "> <div align= "center "> <font size= "2 "> <a href= "URDoc/URHelp.aspx " target= "main "> 在线帮助 </a> </font> </div> </td>
</tr>
</table>
</tr>
<tr width = 100%; height = 80%>
<td width = 20%; height = 100% style= "text-align: left; vertical-align: top; ">
</td>
<td width = 80%; height = 100%>
</td>
</tr>
</table>
<tr width = 100%; height = 60%>
<td width = 20%; height = 100% style= "text-align: left; vertical-align: top; ">
</td>
<td width = 80%; height = 100%>
</td>
</tr>
</form>
</body>
谢谢大家真诚帮助!
[解决办法]
1.style= "border: "
[解决办法]
<frame style= "border:0 ">
[解决办法]
<frame src= "URMain.aspx " name= "main ">
<frame src= "URContent.aspx " name= "content ">
换成 <iframe ...> </iframe>
[解决办法]
试试
<frameset rows= "20%,80% " framespacing= "0 " frameborder= "NO " border= "0 " bordercolor= "#e8ffe8 ">
<frame src= "URTop.aspx " name= "top " frameborder= "NO " scrolling= "no " marginhight= "5 " marginwidth= "5 " noresize>
<frameset cols= "18%,82% " framespacing= "2 " border= "1 " frameborder= "yes " bordercolor= "#e8ffe8 ">
<frame src= "URMain.aspx " name= "main ">
<frame src= "URContent.aspx " name= "content ">
</frameset>
[解决办法]
frameborder= "NO "
应该是 孙子兵法请进群
有问题问你
[解决办法]
<iframe src= "URMain.aspx " name= "main " style= "border:0; margin-top:0px; width:100%; " scrolling= "no "> </iframe>
<frame src= "URContent.aspx " name= "content ">
要显不出来就不知道了
[解决办法]
学习!!!
[解决办法]
我虽然没有回答您的问题,但也帮您顶了下,求您给小女几分好吗?我非专业,但需要点分提问啊!
呵呵,谢谢!!
[解决办法]
帮你顶,
不知道怎么解决,这些都是UI做的
[解决办法]
帮你顶
[解决办法]
帮顶