1. Overflow

    Layout > Overflow

    • Utilities for controlling how an element handles content that is too large for the container.
    Class Properties
    overflow-auto overflow: auto;
    overflow-hidden overflow: hidden;
    overflow-clip overflow: clip;
    overflow-visible overflow: visible;
    overflow-scroll overflow: scroll;
    overflow-x-auto overflow-x: auto;
    overflow-y-auto overflow-y: auto;
    overflow-x-hidden overflow-x: hidden;
    overflow-y-hidden overflow-y: hidden;
    overflow-x-clip overflow-x: clip;
    overflow-y-clip …
    read more
  2. Position

    Layout > Position

    • Utilities for controlling how an element is positioned in the DOM.
    Class Properties Meaning
    static position: static; 기준 없음 (배치 불가능 / 기본값)
    fixed position: fixed; 요소 자기 자신을 기준으로 배치
    absolute position: absolute …
    read more
  3. [파이썬] *args 와 **kwargs 란

    args 와 *kwargs

    Python에서 *args**kwargs 는 함수 정의 시 유용하게 사용되는 매개변수

    *args : (positional) arguments

    • *args 는 함수에 가변 인자를 전달할 때 사용
    • * 이 중요, 뒤에 오 …
    read more
  4. 나의 용어 사전

    이름 풀네임 설명
    2FA 2-factor authentication 2단계 보안인증
    poc Proof of Concept 개념실증
    개념 증명은 기존 시장에 없었던 신기술을 도입하기 전에 이를 검증 …
    read more
  5. [Linux] OS 확인

    cat /etc/os-release

    $ cat /etc/os-release
    
    NAME="Rocky Linux"
    VERSION="9.2 (Blue Onyx)"
    ID="rocky"
    ID_LIKE="rhel centos fedora"
    VERSION_ID="9.2"
    PLATFORM_ID="platform:el9"
    PRETTY_NAME="Rocky Linux 9.2 (Blue Onyx)"
    ANSI_COLOR="0;32"
    LOGO="fedora-logo-icon"
    CPE_NAME="cpe:/o:rocky:rocky:9::baseos"
    HOME_URL="https://rockylinux.org/"
    BUG_REPORT_URL …
    read more

links

social