ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 가끔 까먹는 모음2
    프로그램/css 2016. 9. 8. 11:00
    336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.


    #############$$$$$$$$$$$$$$$$$@@@@@@@@@@@@@@@@@@@@@@@@@ 모바일에서 input focus시 라인없애기


    input, textarea {outline:none;}

    혹은 

    input:focus, textarea:focus {outline:none;}



    input, textarea {outline-style:none}

    혹은 

    input:focus, textarea:focus{outline-style:none}




    #############$$$$$$$$$$$$$$$$$@@@@@@@@@@@@@@@@@@@@@@@@@ 모바일에서 스크롤바 표시 css3로 강제적용




    #FoCont::-webkit-scrollbar {

     width:5px; height:5px;

    }

    #FoCont::-webkit-scrollbar-track-piece  {

    background-color:rgba(165, 20, 15, 0.2);

    }

    #FoCont::-webkit-scrollbar-thumb {

    width: 15px;background-color:rgba(165, 20, 15, 1);

    }



    #############$$$$$$$$$$$$$$$$$@@@@@@@@@@@@@@@@@@@@@@@@@  CSS에서도 특정 부분에  색적용


    짝수면 배경

    .ul_table_list li:nth-child(even) {

    background-color: #f9f9f9;

    }



    #############$$$$$$$$$$$$$$$$$@@@@@@@@@@@@@@@@@@@@@@@@@  CSS에서 글자 초과시 ...


    text-overflow:ellipsis;white-space: nowrap;overflow: hidden; 




    #############$$$$$$$$$$$$$$$$$@@@@@@@@@@@@@@@@@@@@@@@@@  input box에 입력안내 글 설정가능


    ::-webkit-input-placeholder{

    color:red;

    }



    '프로그램 > css' 카테고리의 다른 글

    CSS 이것 저것 모음  (0) 2024.01.23
    가끔 까먹는거 모음...  (0) 2016.09.08
Designed by Tistory.