我很长时间没有使用 HTML(CSS 之前)。基本上我是一个完整的菜鸟。我祈祷我能得到一些有用的信息。
有一些线程涵盖了这个问题,我已经使用了所有这些线程但没有成功,所以我假设这是我的风格格式中的问题,但我无法确定问题所在。这就是我现在的位置。
{<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html14/frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>A Web Site</title>
<style type="text/css">
body {
border-style:ridge;
border-color:inherit;
border-width:thin;
background-color: beige;
margin-left: 4px;
margin-right: 4px;
margin-top:3px;
margin-bottom:3px;
padding: inherit;
font-family: Calibri;
height:auto;
width:auto;
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="Home Page">
<table>
<tr><td align="center">
<img src="Some/pic.jpg">
</td></tr>
</table>
</div>
</form>
</body>
</html>}