使用css设置超出固定宽度出现滚动条

overflow:auto;当内容宽度超出div宽度,或者内容高度超出div宽度,或者同时超出,会自动出现水平、或者垂直、或者水平和垂直滚动条。
例如:

auto{
 width : 200px;
 height : 200px;
 overflow : auto;
}

overflow-x:auto;当内容宽度超出div宽度,自动出现水平滚动条
例如:

auto{
 width : 200px;
 overflow-x : auto;
}

overflow-y:auto;当内容宽度超出div高度,自动出现垂直滚动条
例如:

auto{
 height : 200px;
 overflow-y : auto;
}

你可能感兴趣的:(小功能)