Home > Web Front-end > CSS Tutorial > Rect,RoundRect(矩形)对象_VML相关

Rect,RoundRect(矩形)对象_VML相关

WBOY
Release: 2016-05-16 12:09:58
Original
2302 people have browsed it

用VML画矩形,必须设置 style="width:50;height:50",其他就没有什么特别的。在这节,顺便讲讲 shadow 对象和 TextBox对象:
    

    RoundRect顾名思义,是圆角的矩形,这种形状在画流程图的时候很常用,如果加上阴影,就更好看了:
    
    on="T" type="single" color="#b3b3b3" offset="5px,5px"/>
    

    在VML里面,True 和 False 可以简写成 T 和 F。Shadow 中的 offset 属性用来设置 偏移原图的 x,y 值。 on 属性用来决定是否显示阴影。在矩形中写字,要用到 TextBox 对象。TextBox 比较关键的属性是 inset(left,top,right,bottom),意思是隔图形边的上下左右多少范围内定位文字:
    
    
    inset="5pt,5pt,5pt,5pt" style="font-size:10.2pt;">Hello world!
    
Hello world!

    当然你也可以直接插入HTML代码,比如说插入一个
Hello World!

效果是一样的。
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template