묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
현재 접속시간을 택스트로 뿌릴때 택스트 컬러를 지정하고 싶습니다.
2003.04.05 10:55
아래 소스가 있는데.. font-color: white; 고쳐도 하얀색으로 나오지 않습니다.
어떻게 해야 현재접속시간을 택스트로 뿌릴때 하얀색으로 나오게 할 수 있을까요?
<style type='text/css'>
<!--
.text { FONT-COLOR: black; FONT-FAMILY: 굴림; FONT-SIZE: 9pt; }
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
startday = new Date();
clockStart = startday.getTime();
function initStopwatch() {
var myTime = new Date();
return((myTime.getTime() - clockStart)/1000);
}
function getSecs() {
var tSecs = Math.round(initStopwatch());
var iSecs = tSecs % 60;
var iMins = Math.round((tSecs-30)/60);
var sSecs ="" + ((iSecs > 9) ? iSecs : "0" + iSecs);
var sMins ="" + ((iMins > 9) ? iMins : "0" + iMins);
time.innerHTML = sMins+":"+sSecs;
window.setTimeout('getSecs()',1000);
}
//-->
</script>
<BODY onLoad="window.setTimeout('getSecs()',1);">
<p> </p>
<div id="time" class="text"></div>
어떻게 해야 현재접속시간을 택스트로 뿌릴때 하얀색으로 나오게 할 수 있을까요?
<style type='text/css'>
<!--
.text { FONT-COLOR: black; FONT-FAMILY: 굴림; FONT-SIZE: 9pt; }
-->
</style>
<SCRIPT LANGUAGE="JavaScript">
<!--
startday = new Date();
clockStart = startday.getTime();
function initStopwatch() {
var myTime = new Date();
return((myTime.getTime() - clockStart)/1000);
}
function getSecs() {
var tSecs = Math.round(initStopwatch());
var iSecs = tSecs % 60;
var iMins = Math.round((tSecs-30)/60);
var sSecs ="" + ((iSecs > 9) ? iSecs : "0" + iSecs);
var sMins ="" + ((iMins > 9) ? iMins : "0" + iMins);
time.innerHTML = sMins+":"+sSecs;
window.setTimeout('getSecs()',1000);
}
//-->
</script>
<BODY onLoad="window.setTimeout('getSecs()',1);">
<p> </p>
<div id="time" class="text"></div>
댓글 4
-
보거
2003.04.05 18:27
-
soul
2003.04.06 00:10
보거님.. 일반 html 태그상에서는 color 라고 적어야 맞지만,
css 에서는 font-color 가 맞는 구문인데요-_- -
정문목
2003.04.06 10:46
html 은
font color=색상
아니에요? -
보거
2003.04.11 20:47
아닙니다 - _-;;; 저도 그 생각 많이 했는데요;
font-color 안됩니다. 의심 나시면 실험해 보시길.
처음에는 혼동 많이되죠 _ -_;;