HTML,CSS

Frameタグにスタイルを設定

ちょっとメモ <frame src="./index.html" scrolling="no" style="border-bottom:1px solid #e2e3e4;"></frame>

divを横に並べる - float

<html> <head> <title>css float</title> <style type="text/css"> div.floatClass01{ border : 1px #000000 solid; width : 20%; float : left; margin : 10px; } div.floatClass02{ border : 1px #000000 solid; width : 30%; float : left; margin : 10px; } div.floatClearClass01{ border : 1px #000000 so</head></html>…

divを横に並べる - absolute

<html> <head> <title>css absolute</title> <style type="text/css"> div.divClass01{ border : 1px #000000 solid; width : 50%; position : absolute; left : 0px; top : 0px; } div.divClass02{ border : 1px #000000 solid; width : 50%; position : absolute; left : 50%; top : 0px; } </style> </head> <body> </body></html>