解決電子書包中即時通訊的對話記錄樣式

鴨脖發表於2012-06-21

隨便記一記。為了實現下面的樣式:

.sendbox{

display: inline;

    padding:0.3em;

    text-align:left;

    background:#C6E2FF

    position:relative

    -webkit-border-radius: 10px;

    opacity:1.0;

    margin-left:60px;

}

.receivebox{

display: inline;

    padding:0.3em;

    text-align:left;

    margin-right:"right";

    background:#C6E2FF

    position:relative

    -webkit-border-radius: 10px;

    opacity:1.0;

    margin-right:30px;

}


.sender{

    width:0

    height:0

    font-size:0

    border-width:15px

    border-style:solid

    border-color:#C6E2FF transparent transparent

    _border-color:#C6E2FF white white

    position:absolute

    left:-15px

    top:0px;

}

.receiver{

width:0

    height:0

    font-size:0

    border-width:15px

    border-style:solid

    border-color:#C6E2FF transparent transparent

    _border-color:#C6E2FF white white

    position:absolute

    right:-15px

    bottom:0px;

    

}


相關文章