当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


SVG font-style属性用法及代码示例


这个font-style属性用于指定是使用普通,斜体还是斜面样式呈现文本。

用法:

font-style="style"

属性值:该属性可以具有以下值:

  • normal:这指定文本应以普通形式显示。
  • italic:这指定文本应以斜体显示。
  • oblique:这指定文本应以斜形式显示。

在以下示例中,我们将使用font-style属性设置字体样式:

范例1:



HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 250 300" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <text y="20" x="5" font-size="10px" 
            font-style="normal"> 
            Normal font style 
        </text> 
  
        <text y="35" x="5" font-size="10px" 
            font-style="italic"> 
            Italic font style 
        </text> 
    </svg> 
</body> 
  
</html>

输出:

范例2:

HTML

<!DOCTYPE html> 
<html> 
  
<body> 
    <svg viewBox="0 0 250 300" 
        xmlns="http://www.w3.org/2000/svg"> 
          
        <text y="15" x="5" font-size="10px" 
            font-style="oblique"> 
            oblique font style 
        </text> 
    </svg> 
</body> 
  
</html>

输出:




相关用法


注:本文由纯净天空筛选整理自taran910大神的英文原创作品 SVG font-style Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。