2018-08-16 day04 京東登錄

CSS其他屬性:

    <head>
        <meta charset="UTF-8">
        <title></title>
        <style type="text/css">
            a{
                text-decoration: none;
            }
            
            
            /*--------背景相關(guān)的------*/
            #d1{
                background-color: navajowhite;
                height: 300px;
                width: 800px;
                
                /*1.背景圖
                 * 如果背景圖大于盒子的大小,背景圖能顯示多少就顯示多少
                 * 如果背景圖小于盒子的大小泣矛,就會平鋪(重復(fù)顯示)
                */
                background-image: url(img/logo.png);
                
                /*2.是否平鋪*
                 * 
                 */
                background-repeat: no-repeat;
                
                /*3.設(shè)置背景圖的位置
                 * background-position:x  y;
                 * x: letf/center/right/坐標(biāo)值
                 * y: top/center/bottom/坐標(biāo)值
                 */
                /*background-position: 100px 100px ;*/
                background-position: center;
                
                /*4.同時(shí)設(shè)值
                 * background: 圖片地址 是否重復(fù) x y
                 * background: 圖片地址 是否重復(fù) x y 背景顏色
                 */
                background: url(img/icon.ico) no-repeat center top chartreuse;      
            }
                
            /*----------列表-----------*/
            li{
                background-color: saddlebrown;
                float: left;
                margin-right: 20px;
            }
            /*選擇器為列表/li都可以*/
            ul{
                float: left;
                background-color: royalblue;
                /*1.設(shè)置符號樣式
                 * disc(實(shí)心圓)/circle(空心圓)/square(實(shí)心方塊)/none(去掉列表符號)
                 */
                list-style-type:disc;
                
                /*2.設(shè)置圖片的符號*/
                list-style-image: url(img/icon.ico);
                
                /*3.設(shè)置符號的位置
                 * outside(li標(biāo)簽的外邊), inside(li標(biāo)簽的里面)
                 */
                list-style-position: outside;
                
            }

            /*--------文字相關(guān)----------*/
            p{
                /*1.文字大小*/
                font-size: 20px;
                
                /*2.文字顏色*/
                color: blueviolet;
                
                /*3.設(shè)置字體名*/
                font-family: "book antiqua";
                
                /*4.設(shè)置字體粗細(xì)*/
                /*取值:100-900,normal, bold,bolder*/
                font-weight:900;
                
                /*5.字體傾斜*/
                font-style: italic; 
                
                /*6.內(nèi)容的對齊方式*/
                /*center,left,right*/
                text-align: left;
                
                background-color: yellow;
                /*7.設(shè)置行高
                 * 文字一行的高度(當(dāng)文字只有一行的時(shí)候設(shè)置行高和標(biāo)簽的高度一樣粱檀,可以讓文字垂直居中)
                 */
                height: 500px;
                line-height: 40px;
                
                /*8.文字修飾*/
                /*
                 * none:去掉文字修飾
                 * underline: 添加下劃線
                 * line-through: 添加刪除線
                 * overline: 添加上劃線
                 */
                text-decoration: underline;
                
                /*9.首行縮進(jìn)
                 * 注意單位是em -- 空格
                 */
                text-indent: 4em;
                
                /*10.字間距*/
                letter-spacing: 1px;

            }

        </style>
    </head>
    <body>
        
        <div id="d1">
            <!--<img src="img/bg.png" style="width: 100%; height: 300px;"/>-->
        </div>
        
        <ul>
            <li id="l1">Python</li>
            <li><a href="">H5</a></li>
            <li>JAVA</li>
            <li>測試</li>
        </ul>
        
        <p>
            已矣乎甲棍!寓形宇內(nèi)復(fù)幾時(shí)椰棘?<br />曷不委心任去留?胡為乎遑遑欲何之蒙袍?<br />富貴非吾愿其兴,帝鄉(xiāng)不可期。<br />懷良辰以孤往浸赫,或植杖而耘耔闰围。<br />登東皋以舒嘯,臨清流而賦詩既峡。<br />聊乘化以歸盡羡榴,樂夫天命復(fù)奚疑!
        </p>
        
    </body>

京東登陸
jd.html


<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>京東-歡迎登錄</title>
    <link rel="stylesheet" href="./css/jd.css">
     <link rel="icon" href="img/ic.ico" > 
<!--    <link  rel="icon" mask="" sizes="any">-->
</head>

<body>
    <div id="header">
        <div class="h-top">
            <div class="icon" id="icon">
                <img src="./img/logo.png">
                <img src="./img/l-icon.png">
            </div>
            <a >登陸頁面, 調(diào)查問卷</a>
        </div>
        <div id="h-bottom" class="h-bottom">
            <div class="h-inner">
                <img src="./img/warning.png">
                <p>依據(jù)《網(wǎng)絡(luò)安全法》运敢,為保障您的賬戶安全和正常使用校仑,請盡快完成手機(jī)號驗(yàn)證! 新版<a >《京東隱私政策》</a>已上線传惠,將更有利于保護(hù)您的個(gè)人隱私迄沫。</p>
            </div>
        </div>
    </div>
    <div id="content">
        <div id="loginBox">
            <form action="case.html">
                <img id="./img/qrImg" src="./img/qr.png">
                <h2>密碼登錄</h2>
                <div class="inputDiv"><img class="inputImg" src="./img/act.png"><input class="inputBox" type="text" placeholder="請輸入用戶名/手機(jī)號/郵箱">                    </div>
                <div class="inputDiv"><img class="inputImg" src="./img/pwd.png"><input type="password" class="inputBox" placeholder="請輸入密碼"></div>
                <div><input id="loginBtn" type="button" value="登 錄"></div>
                <div id="wbLogin"><img class="lgImg" src="./img/wb.png"><span>微博登陸</span></div>
                <div id="zhiLogin"><img class="lgImg" src="./img/zhi.png"><span>支付寶登陸</span></div>
                <div id="otherSelect">
                    <a href="case.html">忘記密碼</a>
                    <a href="case.html">忘記會員名</a>
                    <a href="case.html">免費(fèi)注冊</a>
                </div>
            </form>
        </div>
    </div>
    <div id="footer"> 
        <a href="">關(guān)于我們</a>|
        <a href="">聯(lián)系我們</a>|
        <a href="">人才招聘</a>|
        <a href="">商家入駐</a>|
        <a href="">廣告服務(wù)</a>|
        <a href="">手機(jī)京東</a>|
        <a href="">友情鏈接</a>|
        <a href="">銷售聯(lián)盟</a>|
        <a href="">京東社區(qū)</a>|
        <a href="">京東公益</a>|
        <a href="">English Site</a>
        <p>Copyright ? 2004-2018  京東JD.com 版權(quán)所有 </p>
    </div>
</body>

</html>

jd.css:


/* =================0.commen================== */
* {
    margin: 0;
    padding: 0;
    position: relative;
}
a {
    text-decoration: none;
}
/* =================1.header================== */
#header {
    width: 100%;
    height: 103px;
    background-color: rgb(255,248,240)
}
#header .h-top {
    width: 100%;
    height: 80px;
    background-color: rgb(255,248,240)
}
#header .h-top .icon {
    height: 60px;
    position: absolute;
    /*  垂直居中*/
    left: 142px;
    top: 50%;
    line-height: 50px;
    margin-top: -30px;
}
#header .h-top a {
    /*布局*/
    position: absolute;
    right: 40px;
    bottom: 10px;
    /*字體*/
    font-size: 12px;
    color: rgba(154,154,154,1.00);
    /*背景圖*/
    background: url(../img/q-icon.png) no-repeat;
    padding-left: 20px;
}
#header .h-top a:hover{
    color: red;
    text-decoration: underline;
}
#header .h-bottom {
    width: 100%;
    height: 23px;
    background-color: rgb(255,248,240);
}
#header .h-bottom div{
    margin: 0 auto;
    width: 1060px;
}
#header .h-bottom div img{
    float: left;
}
#header .h-bottom p {
    font-size: 13px;
    padding-top: 3px;
    color: rgb(121, 121, 121);
}
#header .h-bottom p a{
    color: rgb(121, 121, 121);
}
#header .h-bottom p a:hover{
    color: red;
    text-decoration: underline;
}
/* =================2.content================== */
#content {
    width: 100%;
    height: 598px;
    background:url(../img/bg.png) center no-repeat;
}

#content #loginBox {
    position: relative;
    top: 80px;
    margin-left: 65%;
    height: 400px;
    width: 360px;
    background-color: rgba(255, 255, 255, 0.83);
}

#content #qrImg {
    float: right;
}

#content h2 {
    float: left;
    margin-top: 30px;
    margin-left: 40px;
    margin-right: 18px;
}

#content .inputDiv {
    float: left;
    background-color: rgb(221, 221, 221);
    margin-top: 25px;
    margin-left: 12%;
    margin-right: 10%;
    width: 270px;
    height: 54px;
}

#content .inputBox {
    float: right;
    border: none;
    margin: 2px 2px 2px 0px;
    width: 220px;
    height: 48px;
    font-size: 16px;
}

#content .inputImg {
    margin: 14px 10px 0px 15px;
}

#content #loginBtn {
    border: none;
    border-radius: 8px;
    background-color: rgb(250, 82, 21);
    font-size: 18px;
    color: whitesmoke;
    margin-top: 25px;
    margin-left: 12%;
    width: 270px;
    height: 48px;
    cursor: pointer;
}

#content #loginBtn:hover{
    background-color: rgb(238, 55, 10)
}

#content #wbLogin {
    float: left;
    margin: 20px 10px 0px 11%;
}
#content #zhiLogin{
    margin: 20px 10px 0px 0px;
}
#content .lgImg{
    margin-bottom:-3px; 
}
#content span{
    margin-left:3px;
    font-size: 13px;
    color: grey;
}
#content #otherSelect a{
    text-decoration: none;
    font-size: 13px;
    color: grey;
    float: right;
    margin: 15px 10px 20px 0px;
}
#content #otherSelect{
    margin-right: 35px;
}
/* =================3.footer================== */
#footer {
    font-size: 15px;
    width: 100%;
    padding-top: 10px;
    height: 86px;
    text-align: center;
}
#footer a{
    margin:0px 8px 0px 5px; 
    text-decoration: none;
    color: rgb(87, 87, 87);
}
#footer a:hover{
    color: red;
    text-decoration: underline;
}
#footer p{
    padding-top: 18px;
    color: rgb(87, 87, 87);
}


最終效果

image.png
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市卦方,隨后出現(xiàn)的幾起案子羊瘩,更是在濱河造成了極大的恐慌,老刑警劉巖愿汰,帶你破解...
    沈念sama閱讀 211,884評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件困后,死亡現(xiàn)場離奇詭異,居然都是意外死亡衬廷,警方通過查閱死者的電腦和手機(jī)摇予,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,347評論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來吗跋,“玉大人侧戴,你說我怎么就攤上這事宁昭。” “怎么了酗宋?”我有些...
    開封第一講書人閱讀 157,435評論 0 348
  • 文/不壞的土叔 我叫張陵积仗,是天一觀的道長。 經(jīng)常有香客問我蜕猫,道長寂曹,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,509評論 1 284
  • 正文 為了忘掉前任回右,我火速辦了婚禮隆圆,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘翔烁。我一直安慰自己渺氧,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,611評論 6 386
  • 文/花漫 我一把揭開白布蹬屹。 她就那樣靜靜地躺著侣背,像睡著了一般。 火紅的嫁衣襯著肌膚如雪慨默。 梳的紋絲不亂的頭發(fā)上贩耐,一...
    開封第一講書人閱讀 49,837評論 1 290
  • 那天,我揣著相機(jī)與錄音业筏,去河邊找鬼憔杨。 笑死,一個(gè)胖子當(dāng)著我的面吹牛蒜胖,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播抛蚤,決...
    沈念sama閱讀 38,987評論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼台谢,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了岁经?” 一聲冷哼從身側(cè)響起朋沮,我...
    開封第一講書人閱讀 37,730評論 0 267
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎缀壤,沒想到半個(gè)月后樊拓,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,194評論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡塘慕,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,525評論 2 327
  • 正文 我和宋清朗相戀三年筋夏,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片图呢。...
    茶點(diǎn)故事閱讀 38,664評論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡条篷,死狀恐怖骗随,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情赴叹,我是刑警寧澤鸿染,帶...
    沈念sama閱讀 34,334評論 4 330
  • 正文 年R本政府宣布,位于F島的核電站乞巧,受9級特大地震影響涨椒,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜绽媒,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,944評論 3 313
  • 文/蒙蒙 一丢烘、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧些椒,春花似錦播瞳、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,764評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至石窑,卻和暖如春牌芋,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背松逊。 一陣腳步聲響...
    開封第一講書人閱讀 31,997評論 1 266
  • 我被黑心中介騙來泰國打工躺屁, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人经宏。 一個(gè)月前我還...
    沈念sama閱讀 46,389評論 2 360
  • 正文 我出身青樓犀暑,卻偏偏與公主長得像,于是被迫代替她去往敵國和親烁兰。 傳聞我的和親對象是個(gè)殘疾皇子耐亏,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,554評論 2 349

推薦閱讀更多精彩內(nèi)容