第3話.inputテキストウィンドウにも色が反映されていたのか!
6436 ワード
この部分をより自然にするために、グーグルでcss属性を見つけました.
http://gnujava.com/board/article_view.jsp?article_no=341&board_no=11&table_cd=EPAR04&table_no=04
この文章で解決した.
そのため、この部分はこのように体現されている.
html
残念ながら、
textarea
とinput
のラベルは私が作ったものではありません.他人の書いたものを写した. <div class="mypost">
<input type="text" id="name" class="form-control" placeholder="닉네임">
<textarea class="form-control" id="" cols="30" rows="10" placeholder="생일축하 멘트" maxlength="400"></textarea>
<button>메시지 남기기</button>
</div>
css
私の今の実力は、どのコードがどのように繰り返されているのか分からないだけなので、クロムが自分で捕まえることを祈っています.
(リンク:https://getbootstrap.kr/docs/5.1/forms/overview/)
.mypost>input {
margin-bottom: 20px;
background-color: transparent;
color: white;
}
.mypost>textarea {
height: 300px;
resize: none;
background-color: transparent;
color: white;
}
.form-control {
display: block;
width: 100px;
font-size: 1rem;
--bs-blue: #0d6efd;
--bs-indigo: #6610f2;
--bs-purple: #6f42c1;
--bs-pink: #d63384;
--bs-red: #dc3545;
--bs-orange: #fd7e14;
--bs-yellow: #ffc107;
--bs-green: #198754;
--bs-teal: #20c997;
--bs-cyan: #0dcaf0;
--bs-white: #fff;
--bs-gray: #6c757d;
--bs-gray-dark: #343a40;
--bs-primary: #0d6efd;
--bs-secondary: #6c757d;
--bs-success: #198754;
--bs-info: #0dcaf0;
--bs-warning: #ffc107;
--bs-danger: #dc3545;
--bs-light: #f8f9fa;
--bs-dark: #212529;
--bs-font-sans-serif: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
--bs-font-monospace: SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: transparent;
box-sizing: border-box;
margin: 0;
font-family: inherit;
display: block;
width: 100%;
font-size: 1rem;
font-weight: 400;
color: #212529;
/* background-color: #fff; */
background-clip: padding-box;
border: 1px solid #ced4da;
appearance: none;
border-radius: .25rem;
transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
height: calc(3.5rem + 2px);
line-height: 1.25;
padding: 1rem .75rem;
}
ポスト
大満足
今はCRUDと親しくなる時だ.
Reference
この問題について(第3話.inputテキストウィンドウにも色が反映されていたのか!), 我々は、より多くの情報をここで見つけました https://velog.io/@nian-3889/3화.-input-텍스트-창에도-색상을-반영할-수-있었구나テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol