How to style input and submit button with CSS?

前端 未结 11 841
天涯浪人
天涯浪人 2020-12-12 13:25

I\'m learning CSS. How to style input and submit button with CSS?

I\'m trying create something like this but I have no idea how to do

11条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-12 13:58

    I did it this way based on the answers given here, I hope it helps

    .likeLink {
        background: none !important;
        color: #3387c4;
        border: none;
        padding: 0 !important;
        font: inherit;
        cursor: pointer;
    }
        .likeLink:hover {
            background: none !important;
            color: #25618c;
            border: none;
            padding: 0 !important;
            font: inherit;
            cursor: pointer;
            text-decoration: underline;
        }
    

提交回复
热议问题