zoukankan
html css js c++ java
fieldset使用实例
myssh
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd
">
<html xmlns="
http://www.w3.org/1999/xhtml
">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>www.52CSS.com</title>
<style type="text/css">
* {
font-size:12px;
margin:0;
padding:0;
}
fieldset {
padding:10px;
margin:10px;
270px;
color:#333;
border:#06c dashed 1px;
}
legend {
color:#06c;
font-weight:800;
background:#fff;
border:#b6b6b6 solid 1px;
padding:3px 6px;
}
ul {
list-style-type: none;
margin:8px 0 4px 0;
}
li {
margin-top:4px;
}
</style>
</head>
<body>
<fieldset>
<legend>myssh</legend>
<ul>
<li>欢迎来到myssh的博客</li>
<li>欢迎来到myssh的博客欢迎来到myssh的博客</li>
<li>欢迎来到myssh的博客欢迎来到myssh的博客</li>
<li>欢迎来到myssh的博客欢迎来到myssh的博客</li>
</ul>
</fieldset>
</body>
</html>
查看全文
相关阅读:
ubuntu安装谷歌浏览器
Andoid之硬件访问服务1(让Andoid应用程序访问c库)
JNI intArray
JNI Hello World
Ubuntu 14.04 Sublime Text3 Java编译运行(最简单的方法)
Python中sys.argv的用法
python连接mysql数据库
python中join()函数讲解
python中split()函数讲解
深度学习入门教程
原文地址:https://www.cnblogs.com/myssh/p/1443002.html
最新文章
怎样判断文档中是否有元素被激活或获取焦点
怎样创建并触发一个事件
怎样添加或移除事件监听函数
怎样创建一个文档片段对象
怎样创建并插入一个注释节点
怎样创建并插入一个属性节点
怎样创建一个文本节点
怎样创建一个元素节点
怎样获取页面上指定位置的元素节点
怎样通过id属性值获取元素节点
热门文章
怎样通过name属性获取元素节点集合
怎样通过类名获取元素节点集合
怎样通过html标签名获取元素节点集合
怎样获取当前文档所有的元素节点(即html标签节点)
怎样通过CSS选择器获取元素节点或元素节点集合
怎样擦除当前文档内容并写入新的内容
JNI 在Android Studio利用NDK编译运行一个简单的c库
ubuntu14.04 配置android studio环境
Ubuntu 下 Java 版本的切换
Linux解压rar文件
Copyright © 2011-2022 走看看