Table of Contents
Reply to discussion (solution)
Home Web Front-end HTML Tutorial Same style, same browser, different effects~_html/css_WEB-ITnose

Same style, same browser, different effects~_html/css_WEB-ITnose

Jun 24, 2016 pm 12:09 PM

The local rendering is as follows:


The rendering sent to the server is as follows:


The image may be a bit big, please look at the image in a new window~Trouble

Browser: Firefox Version: 3.6.28
There are 2 differences here.
The first difference:
In the local rendering, except for the title row, the other rows do not have TD borders; but in the server rendering, some rows have borders and some do not.

Corresponding code:

<table id="bSortTable" width="2045" class="TableList"><tr id="tritem" style="background: #FFFFFF; border-bottom: 1px #cccccc solid;" onmouseover="selecty_sep(this)"                                            onmouseout="selectz_sep(this)" runat="server">                                            <td>                                                 <asp:CheckBox ID="z" runat="server" onclick="AddID_sel(this)" />                                                <asp:HiddenField ID="rep_hid_ID" runat="server" Value='<%# Eval("OrderID") %>' />                                                <asp:HiddenField ID="rep_hid_Name" runat="server" Value='<%# Eval("OrderCode") %>' />                                            </td>                                            <td align="center">                                                <a style=" color:Teal; font-weight:bold;" href="OrderView.aspx?orderid=<%# Eval("OrderID") %>"><%# Eval("OrderCode")%></a>                                            </td>                                            <td align="center">                                                <%# Eval("BeginStation")%>                                            </td>                                            <td align="center">                                                <%# Eval("ArriveStation")%>                                            </td>                                            <td align="center">                                                <%# DateTime.Parse(Eval("OrderDate").ToString()).ToShortDateString()%>                                            </td>                                            <td align="center">                                                <%# Eval("ShipperName")%>                                            </td>                                            <td align="center">                                                <%# Eval("ConsigneeName")%>                                            </td>                                            <td align="center">                                                <%# Eval("ConsignPhoneNum")%>                                            </td>                                            <td align="center">                                                <%# GetCargoDetail(Eval("OrderID").ToString())%>                                            </td>                                            <td align="center">                                                <%# Eval("Freight")%>                                            </td>                                            <td align="center">                                                <%# Eval("ReceiptCost")%>                                            </td>                                            <td align="center">                                                <%# Eval("DeliverCost")%>                                            </td>                                            <td align="center">                                                <%# Eval("Insurance")%>                                            </td>                                            <td align="center">                                                <%# Eval("OtherCost")%>                                            </td>                                            <td align="center">                                                <%# Eval("TotalCost")%>                                            </td>                                            <td align="center">                                                <%# Eval("PayMent")%>                                            </td>                                            <td align="center">                                                <%# Eval("CarrierName")%>                                            </td>                                            <td align="center">                                                <%#GetLoadingCarNum(Eval("OrderID").ToString(), Eval("LoadingCarNum").ToString(), Eval("State").ToString())%>                                                <%--<a href="javascript:void(0)" onclick="event.cancelBubble=true;OpenOrderLoadingInfo(event,'<%# Eval("OrderID") %>');"" title="订单装车详情">                                                    <%# Eval("LoadingCarNum")%></a>--%>                                            </td>                                            <td align="center">                                                <%#GetSendCarNum(Eval("OrderID").ToString(), Eval("SendCarNum").ToString(), Eval("State").ToString())%>                                                <%--<a href="javascript:void(0)" onclick="event.cancelBubble=true;OpenOrderSendInfo(event,'<%# Eval("OrderID") %>');"" title="订单发车详情">                                                    <%# Eval("SendCarNum")%></a>--%>                                            </td>                                            <td align="center">                                                <a href="javascript:void(0)" onclick="event.cancelBubble=true;OpenOrderState(event,'<%# Eval("OrderID") %>','<%# Eval("State") %>');"                                                    title="订单状态详情">                                                    <%# GetDesByState(Eval("State").ToString())%></a>                                            </td>                                            <td align="center">                                                <asp:Literal ID="btn_prev" runat="server"></asp:Literal>                                                <asp:Literal ID="btn_next" runat="server"></asp:Literal>                                                <asp:Literal ID="btn_sign" runat="server"></asp:Literal>                                                <asp:ImageButton ID="btn_signback" ToolTip="回单取消" ImageUrl="../../images/rep_signback.gif"                                                    CommandName="SignBack" CommandArgument='<%# Eval("OrderID") %>' runat="server" />                                            </td>                                        </tr>
Copy after login


/*  列表型表格样式  */.TableList{   border:1px #cccccc solid;   line-height:21px;   font-size:9pt;   border-collapse:collapse;   padding:3px;}.TableList td{   padding:3px;   height:26px;}/*  订单跟踪list专用  */.TableList td .tableDItim{   padding:3px;   border:1px teal solid;}.TableList .TableHeader td,.TableList td.TableHeader{   height:30px !important;   height:32px;   background:#E7F1FA;   border-bottom:1px #9cb269 solid;   border-right:1px #9cb269 solid;   font-weight:bold;   text-align:center;   color:#383838;   padding:0px;}/*  订单跟踪list专用  */.TableList .TableHeader .tableDHeader{   height:30px !important;   height:32px;   background:#E7F1FA;   border-bottom:0px #9cb269 solid;   border-right:0px #9cb269 solid;   font-weight:bold;   text-align:center;   color:#383838;   padding:0px;}
Copy after login



The second difference:
In the local renderings, goods, packaging, The five columns of number of pieces, weight, and volume have table borders; but in the server rendering, they do not.

Related code:
/// <summary>        /// 获取货物详情        /// </summary>        /// <param name="orderid"></param>        /// <returns></returns>        public string GetCargoDetail(string orderid)        {            string des = "<table class=\"tableDItim\" width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\">";            OrderBLL ob = new OrderBLL();            DataSet ds = ob.GetOrderDetailInfoByBID(orderid);            string detail = "";            foreach (DataRow row in ds.Tables[0].Rows)            {                detail += "<tr>";                detail += "<td style=\"width: 105px;\" align=\"center\">";                detail += row["CargoName"].ToString();                detail += "</td>";                detail += "<td style=\"width: 65px;\" align=\"center\">";                detail += row["CargoPackMent"].ToString();                detail += "</td>";                detail += "<td style=\"width: 75px;\" align=\"center\">";                detail += row["PackagesNum"].ToString();                detail += "</td>";                detail += "<td style=\"width: 75px;\" align=\"center\">";                detail += row["Weight"].ToString();                detail += "</td>";                detail += "<td style=\"width: 75px;\" align=\"center\">";                detail += row["Volume"].ToString();                detail += "</td>";                detail += "</tr>";            }            if (detail == "")            {                detail = "<tr><td style=\"width: 105px;\"></td><td style=\"width: 65px;\"></td><td style=\"width: 75px;\"></td><td style=\"width: 75px;\"></td><td style=\"width: 75px;\"></td></tr>";            }            des += detail;            des += "</table>";            return des;        }
Copy after login



Another thing to say is that although using Firefox to open a project on the server is not ideal. But using IE8 to open the server has the same effect as using Firefox to open the local one.

Please ask a style expert to help me, thank you.


Reply to discussion (solution)

Is there any way to set bassurl? I encountered something similar once.

Look at the impact of which border-right

Statement of this Website
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Is HTML easy to learn for beginners? Is HTML easy to learn for beginners? Apr 07, 2025 am 12:11 AM

HTML is suitable for beginners because it is simple and easy to learn and can quickly see results. 1) The learning curve of HTML is smooth and easy to get started. 2) Just master the basic tags to start creating web pages. 3) High flexibility and can be used in combination with CSS and JavaScript. 4) Rich learning resources and modern tools support the learning process.

The Roles of HTML, CSS, and JavaScript: Core Responsibilities The Roles of HTML, CSS, and JavaScript: Core Responsibilities Apr 08, 2025 pm 07:05 PM

HTML defines the web structure, CSS is responsible for style and layout, and JavaScript gives dynamic interaction. The three perform their duties in web development and jointly build a colorful website.

What is an example of a starting tag in HTML? What is an example of a starting tag in HTML? Apr 06, 2025 am 12:04 AM

AnexampleofastartingtaginHTMLis,whichbeginsaparagraph.StartingtagsareessentialinHTMLastheyinitiateelements,definetheirtypes,andarecrucialforstructuringwebpagesandconstructingtheDOM.

Understanding HTML, CSS, and JavaScript: A Beginner's Guide Understanding HTML, CSS, and JavaScript: A Beginner's Guide Apr 12, 2025 am 12:02 AM

WebdevelopmentreliesonHTML,CSS,andJavaScript:1)HTMLstructurescontent,2)CSSstylesit,and3)JavaScriptaddsinteractivity,formingthebasisofmodernwebexperiences.

Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Gitee Pages static website deployment failed: How to troubleshoot and resolve single file 404 errors? Apr 04, 2025 pm 11:54 PM

GiteePages static website deployment failed: 404 error troubleshooting and resolution when using Gitee...

How to implement adaptive layout of Y-axis position in web annotation? How to implement adaptive layout of Y-axis position in web annotation? Apr 04, 2025 pm 11:30 PM

The Y-axis position adaptive algorithm for web annotation function This article will explore how to implement annotation functions similar to Word documents, especially how to deal with the interval between annotations...

How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? How to use CSS3 and JavaScript to achieve the effect of scattering and enlarging the surrounding pictures after clicking? Apr 05, 2025 am 06:15 AM

To achieve the effect of scattering and enlarging the surrounding images after clicking on the image, many web designs need to achieve an interactive effect: click on a certain image to make the surrounding...

Why do you need to call Vue.use(VueRouter) in the index.js file under the router folder? Why do you need to call Vue.use(VueRouter) in the index.js file under the router folder? Apr 05, 2025 pm 01:03 PM

The necessity of registering VueRouter in the index.js file under the router folder When developing Vue applications, you often encounter problems with routing configuration. Special...

See all articles