๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
CSS๐Ÿ”ง/css ์„ ํƒ์ž&๊ฐ€์ƒํด๋ž˜์Šค,๊ณตํ†ตํด๋ž˜์Šค

css :not ๊ฐ€์ƒํด๋ž˜์Šค ๋ถ€์ •์„ ํƒ์ž

by hyojinny 2022. 10. 10.
:not() ์„ ํƒ์ž
์ •์˜ ํ•œ์š”์†Œ์—๋งŒ ์ ์šฉ
css ์Šคํƒ€์ผ์„ ํŠน์ • ์„ ํƒ์ž๋งŒ ์ œ์™ธํ•˜๊ณ  ์‹ถ์„๋•Œ ์‚ฌ์šฉ
์˜ˆ์‹œ
/* input type text ์ค‘ .input_file์€ ์ œ์™ธ */
.inquiry_page .inquiry_area input[type=text]:not(.input_file) {
    width: 100%;
    height: 45px;
    background: #f8f8f8;
    border: none;
    padding: 0 15px;
}

 

 

๋ฌธ์˜์ž‘์„ฑํ‘œ์— input ํƒ€์ž… text ์— ๊ณตํ†ต ํด๋ž˜์Šค๋กœ ๋””์ž์ธ์„ ์ฃผ์—ˆ๋‹ค. 

/* input type text ์ค‘ .input_file์€ ์ œ์™ธ */
.inquiry_page .inquiry_area input[type=text]:not(.input_file) {
    width: 100%;
    height: 45px;
    background: #f8f8f8;
    border: none;
    padding: 0 15px;
}

 

 

 

 

์ด๋–„ :not ๋ถ€์ • ํด๋ž˜์Šค๋กœ file ์„ ํƒ์ž๋ฅผ ์ง€์ •ํ•ด file ๋ถ€๋ถ„๋งŒ ๋””์ž์ธ์ด ๋‹ค๋ฅด๋ฏ€๋กœ ๋นผ์ฃผ๊ณ  ์ ์šฉํ•˜์˜€๋Š”๋ฐ 

์‚ญ์ œํ•ด๋ณด๋ฉด ์•„๋ž˜์™€ ๊ฐ™๋‹ค 

 

 

 

 

๋Œ“๊ธ€