更改Div字体大小&字形

时间:2013-10-31 19:19:01

标签: css html fonts

我想将字体更改为Segoe UI&字体大小到全屏宽度(如果可能)在div标签上。这是代码:

<!DOCTYPE html>
<html>
<head>
<script>
function startTime()
{
var today=new Date();
var h=today.getHours();
var m=today.getMinutes();
var s=today.getSeconds();
// add a zero in front of numbers<10
m=checkTime(m);
s=checkTime(s);
document.getElementById('txt').innerHTML=h+":"+m+":"+s;
t=setTimeout(function(){startTime()},500);
}

function checkTime(i)
{
if (i<10)
{
i="0" + i;
}
return i;
}
</script>
</head>

<body onload="startTime()">
<div id="txt"></div> 
</body>
</html>

我希望尺寸更改为屏幕宽度,所以如果有人通过手机查看它,那么通常情况下需要大字体的人都可以阅读。

2 个答案:

答案 0 :(得分:0)

CSS3 Media Queries正是为了你所要求的。以下是它们如何工作的示例:

<强> HTML

<div>Lorem ipsum dolor sit amet</div>

<强> CSS

DIV {
    font-size:14pt;
}

@media (max-width:450px) {
    /* Increases font size on smaller screen */
    DIV {
        font-size:24pt;
    }
}

<强>样本:

http://jsfiddle.net/uGfAY/ - 尝试调整浏览器窗口大小以模拟不同的屏幕尺寸。

答案 1 :(得分:0)

@media screen and (min-width: 481px) {
.className{
font-size:15px;
}

}
@media screen and (max-width: 480px) {
.className{
font-size:20px;
}

}
@media screen and (max-width: 560px) {
.className{
font-size:25px;
}

}
@media screen and (max-width: 720px) {
.className{
font-size:30px;
}

}
@media screen and (max-width: 768px) {
.className{
font-size:13px;
}

}
@media screen and (max-width: 980px) {
.className{
font-size:12px;
}

}

请使用媒体查询