溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

CSS如何實(shí)現(xiàn)數(shù)字列表

發(fā)布時(shí)間:2022-03-05 10:06:45 來源:億速云 閱讀:231 作者:小新 欄目:web開發(fā)

這篇文章給大家分享的是有關(guān)CSS如何實(shí)現(xiàn)數(shù)字列表的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CSS列表的使用</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
* {
margin: 0;
padding: 0;
}
body {
font-size: 12px;
font-family: Helvetica, sans-serif;
}
h3 {
font-size: 1.7em;
margin-bottom: 5px;
}
h3.number {
position: relative;
top: 0px;
left: 0px;
font-size: 10em;
color: #ccc;
float: left;
margin-right: 10px
}
#page-wrap {
width: 760px;
background: white;
margin: 0 auto;
padding: 10px 0px 50px 0px;
}
.comment-box {
margin: 0px 0px 50px 50px;
padding: 20px;
width: 240px;
border: 1px solid black;
float: left;
}
</style>
</head>
<body>
<div id="page-wrap">
<div class="comment-box">
<h3 class="number">1</h3>
<p>  在松下1121票據(jù)打印機(jī)上測試并通過,直接在左側(cè)輸入打印內(nèi)置命令,
然后點(diǎn)擊“打穎就會(huì)執(zhí)行打印動(dòng)作。同時(shí)它還能執(zhí)行簡單的腳本命令,
這樣你可以控制打印時(shí)在指定字符處換行或輸出其它字符的功能。。</p>
</div>
<div class="comment-box">
<h3 class="number">2</h3>
<p>  銀行業(yè)務(wù)單據(jù)、支票打印系統(tǒng)Delphi控件版,用了FASTREPORT控件,
還有幾個(gè)自己寫的函數(shù),現(xiàn)在奉獻(xiàn)給大家,肯定指導(dǎo),
研究本程序?qū)W(xué)習(xí)Delphi打印功能的編寫很有幫助哦。</p>
</div>
<div style="clear: both;"></div>
</div>
</body>
</html>

感謝各位的閱讀!關(guān)于“CSS如何實(shí)現(xiàn)數(shù)字列表”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

css
AI