>  기사  >  웹 프론트엔드  >  CSS와 HTML로 구현한 숲 로고

CSS와 HTML로 구현한 숲 로고

高洛峰
高洛峰원래의
2016-11-24 10:58:051198검색

css와 html로 구현한 숲 로고

html 코드는 다음과 같습니다.

<div class="logo">
    <div id="tree"></div>
    <div id="trunk">
        <div id="left-branch"></div>
        <div id="right-bottom-branch"></div>
        <div id="right-top-branch"></div>
    </div>
</div> www.php.cn

css 코드는 다음과 같습니다.

* {
    margin:0;
    padding:0;
}
.logo {
    height:300px;
    width:260px;
    margin:150px auto;
    position:relative;
}
#tree {
    border-bottom:300px solid #063;
    border-left:130px solid transparent;
    border-right:130px solid transparent;
    position:absolute;
    left:0;
    top:0;
    height:0;
    width:0;
}
#trunk {
    height:180px;
    width:32px;
    background:#3b543f;
    position:absolute;
    left:109px;
    bottom:-60px;
}
#left-branch {
    background:#3b543f;
    height:70px;
    width:10px;
    position:absolute;
    left:-18px;
    top:15px;
    transform:rotate(-40deg);
    -webkit-transform:rotate(-40deg);
    -moz-transform:rotate(-40deg);
    -o-transform:rotate(-40deg);
    -ms-transform:rotate(-40deg);
}
#right-bottom-branch {
    background:#3b543f;
    height:100px;
    width:10px;
    position:absolute;
    top:20px;
    left:50px;
    transform:rotate(40deg);
    -webkit-transform:rotate(40deg);
    -moz-transform:rotate(40deg);
    -o-transform:rotate(40deg);
    -ms-transform:rotate(40deg);
}
#right-top-branch {
    background:#3b543f;
    height:50px;
    width:10px;
    position:absolute;
    left:40px;
    top:0px;
    transform:rotate(40deg);
    -webkit-transform:rotate(40deg);
    -moz-transform:rotate(40deg);
    -o-transform:rotate(40deg);
    -ms-transform:rotate(40deg);
}


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.