<div>是html标记,代表块元素,这句的意思是将"Cindy King 的ASP。NET网站"居中显示,并且加重显示

解决方案 »

  1.   

    ResThe DIV element is available in HTML as of Internet Explorer 3.0, and in script as of Internet Explorer 4.0.This element is a block element.This element requires a closing tag.ExampleThis example uses two DIV elements to align two sections of text differently.<DIV>
    This text represents a section.
    </DIV><DIV ALIGN=CENTER>
    This text represents another section, and its text is centered.
    </DIV>
      

  2.   

    请你先回去好好学学html语言吧,毕竟它是WEB程序的基础
      

  3.   

    这不是.net的问题,html代码~
    打好基础~
      

  4.   

    <div>是层
    你可以在其中放其它控件,曾里的控件可以统一控制样式
      

  5.   

    他是一个Html的块标记,使用时必须成对使用<div......> </div>。它可以将这对标记中的任何东西(包括文字、图片或控件)进行格式化。尖括号中的....表示属性,这些属性对改标记内的一切存在都有效
        你可以进行多次嵌套,也就是:
    <div .....>
        <div ....>
        </div>
    <div>
     比如,你给出<div align=center><b>Cindy King 的ASP。NET网站</b></div>就表示
    将<div...> </div>中的文字 "Cindy King 的ASP。NET网站" 设置为居中显示(align=center 的作用)