HTML5样式控制示例代码
程序员文章站
2023-11-17 14:43:22
使用 span 元素对行内元素进行分组,以便通过样式对它们进行格式化,下面有个不错的示例,需要的朋友可以参考下... 13-11-27...
1.请使用 span 元素对行内元素进行分组,以便通过样式对它们进行格式化。
<p>this is a paragraph <span style="color:#00ff00;">this is a paragraph</span>
this is a paragraph</p>
在一个td里,利用span控制复选框居左对齐:
<span class="topself_checkboxcontent" style="width:110px;float:left;text-align:left;padding:0px;margin:0px;"><input type="checkbox" class="topself_checkbox" value={{urole.id}} name='check' checked='checked' >{{urole.role}}</span>
复制代码
代码如下:<p>this is a paragraph <span style="color:#00ff00;">this is a paragraph</span>
this is a paragraph</p>
在一个td里,利用span控制复选框居左对齐:
复制代码
代码如下:<span class="topself_checkboxcontent" style="width:110px;float:left;text-align:left;padding:0px;margin:0px;"><input type="checkbox" class="topself_checkbox" value={{urole.id}} name='check' checked='checked' >{{urole.role}}</span>
上一篇: html5 css3网站菜单实现代码