아래 메시지가 있습니다 (약간 변경됨).
“2011 년 1 월 30 일까지 대회에 참가하면 놀라운 여름 여행을 포함하여 최대 $$$$까지 우승 할 수 있습니다!”
나는 현재 :
<p style="font-size:14px; color:#538b01; font-weight:bold; font-style:italic;">
텍스트 문자열 형식을 지정하지만 “January 30, 2011″의 색상을 # FF0000으로 변경하고 “summer”를 # 0000A0으로 변경하려고합니다.
HTML 또는 인라인 CSS로 어떻게 엄격하게 수행합니까?
답변
<p style="font-size:14px; color:#538b01; font-weight:bold; font-style:italic;">
Enter the competition by
<span style="color: #ff0000">January 30, 2011</span>
and you could win up to $$$$ — including amazing
<span style="color: #0000a0">summer</span>
trips!
</p>
또는 CSS 클래스를 대신 사용할 수 있습니다.
<html>
<head>
<style type="text/css">
p {
font-size:14px;
color:#538b01;
font-weight:bold;
font-style:italic;
}
.date {
color: #ff0000;
}
.season { /* OK, a bit contrived... */
color: #0000a0;
}
</style>
</head>
<body>
<p>
Enter the competition by
<span class="date">January 30, 2011</span>
and you could win up to $$$$ — including amazing
<span class="season">summer</span>
trips!
</p>
</body>
</html>
답변
HTML5 태그를 사용할 수 있습니다 <mark>
.
<p>Enter the competition by
<mark class="red">January 30, 2011</mark> and you could win up to $$$$ — including amazing
<mark class="blue">summer</mark> trips!</p>
그리고 이것을 CSS에서 사용하십시오.
p {
font-size:14px;
color:#538b01;
font-weight:bold;
font-style:italic;
}
mark.red {
color:#ff0000;
background: none;
}
mark.blue {
color:#0000A0;
background: none;
}
태그 <mark>
에는 최소한 Chrome에서 기본 배경색이 있습니다.
답변
<p style="font-size:14px; color:#538b01; font-weight:bold; font-style:italic;">
Enter the competition by <span style="color:#FF0000">January 30, 2011</span> and you could win up to $$$$ — including amazing <span style="color:#0000A0">summer</span> trips!
</p>
범위 요소는 인라인이므로 단락의 흐름을 끊지 않고 태그 사이의 스타일 만 지정합니다.
답변
스팬을 사용하십시오. 전의)<span style='color: #FF0000;'>January 30, 2011</span>
답변
<font color="red">This is some text!</font>
이것은 문장에서 한 단어 만 빨간색으로 바꾸고 싶을 때 가장 효과적이었습니다.
답변
수업을 만들 수도 있습니다.
<span class="mychangecolor"> I am in yellow color!!!!!!</span>
그런 다음 css 파일에서 다음을 수행하십시오.
.mychangecolor{ color:#ff5 /* it changes to yellow */ }
답변
이 코드를 필요에 맞게 조정하십시오. 텍스트를 선택할 수 있습니까? 단락에서 필요한 글꼴이나 스타일을 지정하십시오! :
<head>
<style>
p{ color:#ff0000;font-family: "Times New Roman", Times, serif;}
font{color:#000fff;background:#000000;font-size:225%;}
b{color:green;}
</style>
</head>
<body>
<p>This is your <b>text. <font>Type</font></strong></b>what you like</p>
</body>