/*!
 * css for styleTest.html
 * @author Aaron Jo
 * @date 2018
 */
@charset "utf-8";

/*
    -CSS Selector Description
    #abc > h1 :  직계자식
    #abc h1 : 후손(하위모든자식)
    #abc + h1 : 다음인접
    #abc ~ h1 : 다음형제
*/

.my_pic {
    background:url('../../common/img/etc/magnifying_class.png') no-repeat;
}