如何更改选取框文本的大小?
How do I change the size of a marquee text?
如何更改选取框文本的大小?
请帮忙。我现在使用的字幕代码是这样的:
<marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
只需添加CSS
marquee {
font-size: xx-large;
}
<marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
marquee{
font-size:50px;
}
<marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
经典 Html, style="font-size:50pt;"
<marquee style="font-size:50pt;" behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
选取框的格式在这里:https://way2tutorial.com/html/html_marquee_tag.php
解决您关于字体大小的具体问题,试试这个:
考虑选取框在不同浏览器上的工作方式 - 例如,我注意到 Chrome 渲染选取框比 safari 更好 - Safari 往往有点紧张(水平)[我使用的是 MacOS Big苏尔 11.04]
有很多种方式,就这2种方式
- 在
style.css
中添加marquee{properties}
例如-
marquee{
font-size:3em;
width:10em;
height:2em;
color:white;
background-color:black;
}
<marquee attribute_name = "attribute_value"....more attributes>
One or more lines or text message or image
</marquee>
- 使用内联 CSS。例如-
<marquee style="color:green;font-size:2em;" attribute_name = "attribute_value"....more attributes>
One or more lines or text message or image
</marquee>
您可以使用 HTML
: style="font-size: 20px;" // you can change the figure as you prefer for the size
完整的<marquee>
是这样的:
<marquee height="20" width="100%" bgcolor="white" marquee="" behavior="scroll" direction="left" scrollamount="3" style="font-size: 20px;">Hello World !</marquee>
如何更改选取框文本的大小?
请帮忙。我现在使用的字幕代码是这样的:
<marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
只需添加CSS
marquee {
font-size: xx-large;
}
<marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
marquee{
font-size:50px;
}
<marquee behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
经典 Html, style="font-size:50pt;"
<marquee style="font-size:50pt;" behavior="scroll" direction="left" scrollamount="30">Sidebar Test</marquee>
选取框的格式在这里:https://way2tutorial.com/html/html_marquee_tag.php
解决您关于字体大小的具体问题,试试这个:
考虑选取框在不同浏览器上的工作方式 - 例如,我注意到 Chrome 渲染选取框比 safari 更好 - Safari 往往有点紧张(水平)[我使用的是 MacOS Big苏尔 11.04]
有很多种方式,就这2种方式
- 在
style.css
中添加marquee{properties}
例如-
marquee{
font-size:3em;
width:10em;
height:2em;
color:white;
background-color:black;
}
<marquee attribute_name = "attribute_value"....more attributes>
One or more lines or text message or image
</marquee>
- 使用内联 CSS。例如-
<marquee style="color:green;font-size:2em;" attribute_name = "attribute_value"....more attributes>
One or more lines or text message or image
</marquee>
您可以使用 HTML
: style="font-size: 20px;" // you can change the figure as you prefer for the size
完整的<marquee>
是这样的:
<marquee height="20" width="100%" bgcolor="white" marquee="" behavior="scroll" direction="left" scrollamount="3" style="font-size: 20px;">Hello World !</marquee>