/* 기본 적용 */
#captchaCode::placeholder {
    color: red;
    font-style: italic;
    font-weight: 300;
    opacity: 1; /* 파이어폭스 기본 투명도 제거 */
}
/* 브라우저 호환성 (크롬, 사파리, 엣지) */
#captchaCode::-webkit-input-placeholder {
    color: red;
    font-style: italic;
    font-weight: 300;
}
/* 브라우저 호환성 (파이어폭스) */
#captchaCode::-moz-placeholder {
    color: red;
    font-style: italic;
    font-weight: 300;
}
/* 브라우저 호환성 (인터넷 익스플로러) */
#captchaCode:-ms-input-placeholder {
    color: red;
    font-style: italic;
    font-weight: 300;
}