HTMLでサイドバイサイドに2つのfieldsetを配置する方法
方法1: floatプロパティを使用する方法<!DOCTYPE html> <html> <head> <style> .container { width: 100%; } .fieldset-wrapper { width: 50%; float: left; } fieldset { border: 1px solid #ccc; padding: 10px; } </style> </head> >>More
方法1: floatプロパティを使用する方法<!DOCTYPE html> <html> <head> <style> .container { width: 100%; } .fieldset-wrapper { width: 50%; float: left; } fieldset { border: 1px solid #ccc; padding: 10px; } </style> </head> >>More