More Web Proxy on the site http://driver.im/今度こそ始めるjQuery超入門
- 59. ベースのHTMLを作成
<body>
! <dl>
! ! <dt>Step.1</dt>
! ! <dd><p>Lorem ipsum
! ! (中略)
! ! venenatis.</p></dd>
! ! <dt>Step.2</dt>
! ! <dd><p>Integer rhoncus
! ! (中略)
! ! ultricies accumsan. </p></dd>
! ! <dt>Step.3</dt>
! ! <dd><p>Integer pretium
! ! (中略)
! ! imperdiet. </p></dd>
! </dl>
</body>
- 60. CSSでベースを整形
body{
! background:#252422;
}
dl{
! width:800px;
! margin:50px auto;
}
dt{
! line-height:35px;
! font-size:large;
! text-indent:3em;
! font-weight:bold;
! color:white;
! height:35px;
! background:url("images/background.jpg")
}
dd{
! margin:0;
! height:300px;
! background:#D4D0C8;
}
dd p{
! margin:0;
! text-indent:1em;
! padding:20px;
}
!