NppMarkdownPanel icon indicating copy to clipboard operation
NppMarkdownPanel copied to clipboard

Add borders to tables and fieldset's

Open Clicketyclick opened this issue 2 years ago • 2 comments

Fieldsets have no borders

Clicketyclick avatar Mar 29 '23 08:03 Clicketyclick

Hi, can you tell me which markdown is required to produce a fieldset? I want to test your css code.

mohzy83 avatar May 30 '23 15:05 mohzy83

Pick an example from https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_fieldset

<form action="/action_page.php">
  <fieldset>
    <legend>Personalia:</legend>
    <label for="fname">First name:</label>
    <input type="text" id="fname" name="fname"><br><br>
    <label for="lname">Last name:</label>
    <input type="text" id="lname" name="lname"><br><br>
    <input type="submit" value="Submit">
  </fieldset>
</form>

+--|Personalia|------------------------- | First name: [ ___________ ] | Last name: [ ___________ ] | [Submit] +----------------------------------------

Clicketyclick avatar Jun 08 '23 06:06 Clicketyclick