上圖右邊紅圈處多餘空白無法置中
我的 masterpage.master 程式碼如下
<body style="margin-top :0px; text-align :center ">
我的另一個網頁參照主板頁面程式碼如下
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage2.master" AutoEventWireup="false" CodeFile="news2.aspx.vb" Inherits="Main_news2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<html><head> <style type="text/css"> .divTAC{width:990px;height:200px;margin:0 auto;background:#999;} </style> </head> <body> <div class="divTAC">這個DIV會置中</div> </body></html>
<pre class="c" name="code">
<style type="text/css">
body{margin:0;padding:0}
</style>
你必須讓整個body的上面兩個值為0,然後才有辦法消除多餘的空白
你為何不將頁面捲軸關閉就搞定