- 浏览: 420760 次
- 性别:
- 来自: 济南
最新评论
-
pmh905001:
写的很详尽,感谢!
解析jvm.dll和java.exe -
Bll:
插得真深啊,我的是(eclipse_j2ee_juno):F: ...
在eclipse里jsp编译后的java和class文件的位置 -
heming_way:
谢谢,对我很有用,解答了我对多值依赖的疑问
关于多值依赖--范式! -
JavaStudy2011:
java语言解析xml文件 -
vrussell:
Thanks man, it helps me a lot!
获得IEditorPart和IDocument
文章列表
1.通常采用margin:-100px等来细化div的位置
如
#win{position:absolute;top:50%;left:50%;width:400px;height:200px;margin:-102px 0 0 -202px;display:none;}
位置为50%,50%,但位置得稍微调节下,这是margin+负数就有了用武之地
2 div固定长度时,内部的图片会自动扩展
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org ...
http://www.php100.com/html/webkaifa/DIV_CSS/2009/0418/2357.html
<!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 ...
line-height导致的表格显示不完整
- 博客分类:
- 样式
<div class="style1" style="width:80%">
<p>
<table width="100%">
<tr>
<td style="text-align:left;width:50%">标题:</td>
<td><input type="radio" name="lc" value="lc2" ...
table的td之间有间隙
- 博客分类:
- 样式
一个简单的html布局
<table>
<tr>
<td class="style1" align="center">COLUM1</td>
<td class="style1" align="center">COLUM2</td>
</tr>
css中这么定义style1样式的
td.style1
{
border-style:solid;
bord ...
函数是JavaScript中很重要的一个语言元素,提供了一个function关键字和内置对象Function,下面是其可能的用法和它们之间的关系。
使用方法一:
var foo01 = function() //or fun01 = function()
{
var temp = 100;
this.temp = 200;
return temp + this.temp;
}
alert(typeof(foo01));
alert(foo01());
运行结果:
function
300
最普通的function使 ...
分析一段css选择器实现TAB分页技术
- 博客分类:
- 样式
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
&l ...
css中display:inline
- 博客分类:
- 样式
<div> DIV1 </div>
<div> DIV2 </div>
这里DIV1和DIV2分别占一行,但是你给他们加上属性后变了
<div style= "display:inline "> DIV1 </div>
<div style= "display:inline "> DIV2 </div>
DIV1和DIV2这时候显示在 ...
<%@ page language="java" contentType="text/html; charset=Shift_JIS"
pageEncoding="Shift_JIS"%>
<%@ taglib uri="/WEB-INF/cop.tld" prefix="cop"%>
<cop:iniCtx id="ctx" />
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML ...
基本CSS选择器,复合选择器,后代选择器 基本CSS选择器有标记选择器、类别选择器、ID选择器3种
1。标记选择器
每一种HTML标记的名称都可以作为相应的标记选择器的名称,如h1,p,等等
2。类别选择器
类别选择器的名称可 ...
Class.getResource
- 博客分类:
- java基础
用JAVA获取文件,听似简单,但对于很多像我这样的新人来说,还是掌握颇浅,用起来感觉颇深,大常最经常用的,就是用JAVA的File类,如要取得c:/test.txt文件,就会这样用File file = new File("c:/test.txt");这样用有什么问题,相信大家都知道,就是路径硬编码,对于JAVA精神来说,应用应该一次成型,到处可用,并且从现实应用来讲,最终生成的应用也会部署到Windows外的操作系统中,对于linux来说,在应用中用了c:/这样的字样,就是失败,所以,我们应该尽量避免使用硬编码,即直接使用绝对路径。
在Servlet应用中,有一个g ...
div居中的另类做法
- 博客分类:
- 样式
<div style="height:25%"></div>
<div style="text-align:center;vertical-align:middle;line-height:300px;">
<table>
<tr>
<td colspan="3" align="center"><img src="img/login.png"/></td></tr>
<t ...
div的align和text-align
- 博客分类:
- js
CSS text-align 属性
首先这个属性css的属性,在div里面的应用为
<div style="text-align:center">
<div align="center">
This is some text!
</div>
align是div的属性
虽然对于div诗一样的作用
但请看下面兼容提示
引用
在 HTML 4.01 中,不赞成使用 div 元素的 align 属性;在 XHTML 1.0 Strict DTD 中,不支持 div 元素的 align 属性。
请使用 CSS 代替。
...
《MySQL技术内幕:InnoDB存储引擎》试读
http://www.iteye.com/wiki/hzbook/2906-MySQL-InnoDB#3392
http://www.otakustay.com/browser-strategy-loading-external-resource/
Javascript的可用对象有:
anchor
applet
button
checkbox
Date
document
form
history
link
location
Math
password
radioButton
reset
selection
string
submit
text
textArea
window
Navigator的对象继承树
navigator
window
history
document
anchors
forms
links
lo ...