以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- weui的css怎么改? (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=105000) |
||
-- 作者:i4whylg -- 发布时间:2017/8/9 23:31:00 -- weui的css怎么改? 比如我想用圆角矩形的文本框,css如下: border-radius属性可以实现元素的圆角。如下css可以实现文本框(单行、多行)的圆角:
我应该在weui的css里面改,还是重新写一个css?应该怎么写?
|
||
-- 作者:有点蓝 -- 发布时间:2017/8/10 8:56:00 -- Select Case e.Path Case "test.htm" Dim wb As New weui wb.AddForm("","form1","test.htm") With wb.AddInputGroup("form1","ipg1","登录") With.AddInput("xm","户名","text") .Attribute = "style=\'border-radius:3px;border:1px solid #000;\'" End With .AddInput("pw","密码","password") End With With wb.AddButtonGroup("form1","btg1",True) .Add("btn1", "确定", "submit") End With e.WriteString(wb.Build) \'生成网页 End Select
|
||
-- 作者:有点甜 -- 发布时间:2017/8/10 9:04:00 -- 你可以直接修改 weui 的css的。这样会简单很多。
也可以自己写一个css,但你要引入你写的css;也可以像2楼那样,直接指定attribute。 |
||
-- 作者:i4whylg -- 发布时间:2017/8/10 9:27:00 -- 谢谢两位版主 |