0

我很长时间没有使用 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>}
4

3 回答 3

0

在 span 标签中添加您的文本并将 css 的 margin 属性应用到它。像例如

<span class="textCenter"> Hi This is text </span>

在 CSS 中:

.textCenter {
    margin-left:auto;
    margin-right:auto;
}

您可以相应地调整边距以使文本居中。在此处检查保证金属性:http: //www.w3schools.com/css/css_margin.asp

于 2013-08-06T01:17:26.063 回答
0

width:auto;如上一个答案中所述,在后面添加一个大括号,在<img>like </img>(或惰性关闭<img />)上添加一个关闭标签,并在</html>.

<body>
    <form id="form1">
        <div id="Home Page">
            <table>
                <tr>
                    <td align="center">
                        <img src="Some/pic.jpg" />
                    </td>
                </tr>
            </table>
        </div>
   </form>
</body>
于 2013-08-06T01:14:45.570 回答
-1

你需要一个花括号。

//...
height: auto;
width: auto;
}
于 2013-08-06T01:02:39.023 回答