枫丹白露666 发表于 2018-11-14 13:57:14

align = "middle"不能居中

<!DOCTYPE html>
<html>
<head>
        <meta charset="utf-8">
                        <title></title>
</head>
<body>
<marquee bgcolor = "#66FFF" scrollamount = "9" direction = "down" height = "888" width="666" hspace = "300" vspace = "200" align = "middle" behavior = "alternate" onmouseout="this.start()" onmouseover="this.stop()"><font size = "15" color = "#FFF">三十年河东,三十年河西</font></marquee>
</body>
</html>


不二如是 发表于 2018-11-14 15:09:35

1、首先要知道algin属性是干什么:是整个移动对象的组合,也就是你的文字的进入点到出点之间的距离为一个组合,这个组合的位置。

一个例子:
/////////////正在移动文字///////

这个移动的宽度就是一个组合,可以左右,也可以上下。

我拿"|"代表网页左右边界,___代表空白,那么:
|///////正在移动文////___________________________|
这个就是align=left。

|___________________________///////正在移动文////|
就是right。

但是如果你的组合的宽度跟网页的边界一样宽,那你很难分辨出你的这个位置的关系~~

简单修改:
<table width="500" border="1" align="center">
<tr>
    <td height="100" align="left" valign="top">
      <marquee scrollamount='4' scrolldelay='100' direction= 'left' width='400' height='20' id='mar1' onMouseOver=mar1.stop() onMouseOut=mar1.start() behavior="alternate">
            <font color="#000">水平:左对齐,垂直:顶端</font>
      </marquee></td>
</tr>
<tr>
    <td height="100" align="center">
      <marquee scrollamount='4' scrolldelay='100' direction= 'left' width='400' height='20' id='mar2' onMouseOver=mar2.stop() onMouseOut=mar2.start() behavior="alternate">
            <font color="#000">水平:居中对齐,垂直:默认</font>
      </marquee></td>
</tr>
<tr>
    <td height="100" align="right" valign="bottom">
      <marquee scrollamount='4' scrolldelay='100' direction= 'left' width='400' height='20' id='mar3' onMouseOver=mar3.stop() onMouseOut=mar3.start() behavior="alternate">
            <font color="#000">水平:右对齐,垂直:底部</font>
      </marquee></td>
</tr>
</table>

wongyusing 发表于 2018-11-14 16:48:25

好像不是叫mid吧
应该是centent

枫丹白露666 发表于 2018-11-15 13:22:00

不二如是 发表于 2018-11-14 15:09
1、首先要知道algin属性是干什么:是整个移动对象的组合,也就是你的文字的进入点到出点之间的距离为一个组 ...

大神你好,我刚刚开始学习,仅仅学到这一章,您所写的<td> id='mar1' 没有学过,就这一节而言,如果改变height和width的参数可以吗?
页: [1]
查看完整版本: align = "middle"不能居中