码迷,mamicode.com
首页 >  
搜索关键字:border css3 border-image    ( 20055个结果
HTML <tr> 标签
实例 一个简单的 HTML 表格,包含两行两列: <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> 亲自试一试 浏览器支持 ...
分类:Web程序   时间:2020-05-11 19:07:00    阅读次数:81
HTML <thead> 标签
实例 带有 thead、tbody 以及 tfoot 元素的 HTML 表格: <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$ ...
分类:Web程序   时间:2020-05-11 18:58:29    阅读次数:76
CSS3实现伪类hover离开时平滑过渡效果
由于hover伪类添加的动画效果,仅当鼠标放在元素上时会被触发,而当鼠标离开时,效果会中断,会显得很生硬。 大多数人的想法都是使用js的onmouseover和onmouseleave事件来实现动画效果。其实不必这么麻烦,CSS3便可以帮你解决这些问题。 <!DOCTYPE html> <html ...
分类:Web程序   时间:2020-05-11 18:55:22    阅读次数:430
HTML <tbody> 标签
实例 带有 thead、tbody 以及 tfoot 元素的 HTML 表格: <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <td>Sum</td> <td>$ ...
分类:Web程序   时间:2020-05-11 18:54:46    阅读次数:94
HTML <tfoot> 标签
HTML <tfoot> 标签 实例 带有 thead、tbody 以及 tfoot 元素的 HTML 表格: <table border="1"> <thead> <tr> <th>Month</th> <th>Savings</th> </tr> </thead> <tfoot> <tr> <t ...
分类:Web程序   时间:2020-05-11 18:43:12    阅读次数:180
HTML <th> 标签
实例 普通的 HTML 表格,包含两行两列: <table border="1"> <tr> <th>Company</th> <th>Address</th> </tr> <tr> <td>Apple, Inc.</td> <td>1 Infinite Loop Cupertino, CA 950 ...
分类:Web程序   时间:2020-05-11 18:36:53    阅读次数:78
HTML <td> 标签
实例 一个简单的 HTML 表格,包含两行两列: <table border="1"> <tr> <th>Month</th> <th>Savings</th> </tr> <tr> <td>January</td> <td>$100</td> </tr> </table> 亲自试一试 浏览器支持 ...
分类:Web程序   时间:2020-05-11 18:26:45    阅读次数:90
数组去重.html
<head> <meta charset="UTF-8"> <title></title> <style type="text/css"> *{ margin-top: 10px; box-sizing: border-box; } span{ display:inline; width: 200p ...
分类:编程语言   时间:2020-05-11 13:34:43    阅读次数:90
asdw键移动图片.html
<body> <div id="myImg" style="position: absolute; width: 100px;height: 100px;background-color: pink;border: red solid 2px; border-radius: 20px;"> <!-- ...
分类:移动开发   时间:2020-05-11 13:27:39    阅读次数:71
HTML <dialog> 标签
实例 使用 <dialog> 元素: <table border="1"> <tr> <th>一月 <dialog open>这是打开的对话窗口</dialog></th> <th>二月</th> <th>三月</th> </tr> <tr> <td>31</td> <td>28</td> <td> ...
分类:Web程序   时间:2020-05-11 13:16:11    阅读次数:62
20055条   上一页 1 ... 72 73 74 75 76 ... 2006 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!