[CSS] input 태그에 이미지 넣기

hi·2022년 4월 16일
0
<head>
<style>
	input{
    	background-img : url('이미지 위치');
        background-repeat : no-repeat;
        backgroupd-size : 13px;
    }
</style>
</head>

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

0개의 댓글