본문 바로가기
HTML CSS

KokoaTalk Clone Coding: pseudo selector

by jane.dev 2021. 5. 5.
반응형

<head>

    <style>

        input::placeholder {

            color: yellowgreen;

        }

    </style>

</head>

<body>

    <form>

        <input type="text" placeholder="name" />

    </form>

</body>

placeholder
write something

 

<head>

    <style>

        p::selection {

            color: white;

            background-color: yellowgreen;

        }

    </style>

</head>

<body>

    <form>

        <p>Life is just one damned thing after another. -Elbert Hubbard</p>

    </form>

</body>

selection

I was draged 'one damned thing'.

 

<head>

    <style>

            p::first-letter {

            font-size: 50px;

            background-color: yellowgreen;

            color: white;

        }

    </style>

</head>

<body>

    <form>

        <p>

        When we were children, we used to think that when we were grown-up we would no longer be vulnerable. But to grow up is to accept vulnerability... To be alive is to be vulnerable. -Madeleine L'Engle

        </p>

    </form>

</body>

first-letter

or

p::first-line {

    font-size: 50px;

    background-color: yellowgreen;

    color: white;

}

first-line