[Solved] How to create this border styles in HTML/CSS? [closed]

Following is a sample (Note that Samples are not complete answers and so my answer is) ,see this, Learn CSS basics The following code will give you the result you want though. //HTML <table style=”border:none;”> <tr> <td>Corporate Finance</td> </tr> <tr> <td>Derivatives</td> </tr> <tr> <td>Economics</td> </tr> </table> // CSS table { border-spacing: 5px; } table, th, … Read more

[Solved] How to make custom sizing for window with non-sizeable borders?

Here a customized form-class with implemented non-sizeable borders sizing and possibility to disable sizing for specified edges. Also it supports double clicks on borders to toggle between two rectangle-boundaries: AutoSizeRect to values of which form sides getting moved on dblclick and SavedSizeRect into which values form side coordinates saved before changing. So AutoSizeRect could be … Read more

[Solved] How can i give my h1 a border at the bottom right corner with css? [closed]

Use multiple background: h1 { background-image: linear-gradient(blue,blue), linear-gradient(blue,blue); background-position:bottom right; background-size:3px 20px,20px 3px; background-repeat:no-repeat; display:inline-block; padding:0 5px; } <h1>Some text here</h1> solved How can i give my h1 a border at the bottom right corner with css? [closed]