Fieldset Styled
<div class="p-6 space-y-4 bg-white rounded-lg">
<!-- Styled Fieldset with Background and Border -->
<fieldset class="w-full bg-gray-100 border border-gray-300 rounded-lg p-4">
<legend class="px-2 text-lg font-medium text-gray-900">Page title</legend>
<input type="text" class="w-full px-3 py-2 text-gray-700 bg-white border rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500" placeholder="My awesome page" />
<p class="mt-1 text-sm text-gray-500">You can edit page title later on from settings</p>
</fieldset>
</div>
Copied to clipboard