How to style input and submit button with CSS?

前端 未结 11 840
天涯浪人
天涯浪人 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
    2020-12-12 13:57

    Simply style your Submit button like you would style any other html element. you can target different type of input elements using CSS attribute selector

    As an example you could write

    input[type=text] {
       /*your styles here.....*/
    }
    input[type=submit] {
       /*your styles here.....*/
    }
    textarea{
       /*your styles here.....*/
    }
    

    Combine with other selectors

    input[type=text]:hover {
       /*your styles here.....*/
    }
    input[type=submit] > p {
       /*your styles here.....*/
    }
    ....
    

    Here is a working Example

提交回复
热议问题