福叔 2014-01-08
Definition
Theoverflowpropertyspecifieswhathappensifcontentoverflowsanelement'sbox.
Usage
Defaultvalue:visible
Inherited:no
Version:CSS2
JavaScriptsyntax:object.style.overflow="scroll"
PropertyValues
ValueDescription
visibleTheoverflowisnotclipped.
Itrendersoutsidetheelement'sbox.
Thisisdefault
hiddenTheoverflowisclipped,
andtherestofthecontentwillbeinvisible
scrollTheoverflowisclipped,
butascroll-barisaddedtoseetherestofthecontent
autoIfoverflowisclipped,
ascroll-barshouldbeaddedtoseetherestofthecontent
inheritSpecifiesthatthevalueoftheoverflowproperty
shouldbeinheritedfromtheparentelement.
如果只有文本超出div宽度时,才显示scroll,
则设为:overflow:auto
当然,还可以指定:
overflow-x:auto;
overflow-y:auto;
http://www.w3schools.com/cssref/pr_pos_overflow.asp
-
window.scroll(x,y)跳转到页面的指定坐标点,目标点是以像素为单位从页面左上角为标记点的距离,水平和垂直滚动条滚动到相应x,y点。soga 原来javascript 还有这么个函数。。。