私はcssを初めて使用し、画像をdiv要素内で水平方向に整列させようとしています。
float and display:inlineを試しましたが、それでも垂直方向に整列しています。
#maincontainer {
left : 50px;
top : 80px;
width : 300px;
height : 100px;
border : solid 2px #0f0f0f;
position : absolute;
overflow : scroll;
}
#maincontainer img {
top : 10px;
left : 10px;
width : 80px;
height : 80px;
padding : 10px;
position :relative;
float : left;
}
私がどこか間違っているかどうか助けて教えてください。