Results: 1580
Notes
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
attributes: "rows", "cols"
<textarea rows="30" cols="80"></textarea>
rows
is attribute to define height of the textarea and
cols
- for defining width
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML Tutorial for Beginners
2
attributes "min", "max"
<input type="number" min="5" max="10">
min
and
max
attributes are used to define minimum and maximum values for the number input
by Valeri Tandilashvili
5 years ago
0
HTML
attributes
HTML Tutorial for Beginners
2
tag "legend"
<fieldset>
tag should contain
legend
tag in order the fieldbox to have title
<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>
 </fieldset>
</form>
by Valeri Tandilashvili
5 years ago
0
HTML
tags
HTML Tutorial for Beginners
2
h1 {
    height: 500px;
    height: 100vh;
}
by Valeri Tandilashvili
4 years ago
0
CSS
measurement units
Learn CSS
2
Only the post author will be able to delete their own post
public function destroy($id)
{
    $post = POST::find($id);

    // Check for correct user
    if (auth()->user()->id !== $post->user_id) {
        return redirect('/posts')->with('error', 'Unauthorized page');
    }

    $post->delete();
    return view('posts')->with('success', 'Post Removed');
}
by Valeri Tandilashvili
4 years ago
0
Laravel
auth
Laravel From Scratch
2
Relative to 1% of the width of the viewport. If our browser viewport is set to 1,000 x 1,200 pixels, then:
1.5vw = 15px font size
1.5vh = 18px font size
1.5vmin = min(1.5vw, 1.5vh) = 15px font size
by Valeri Tandilashvili
4 years ago
0
CSS
measurement units
Learn CSS Units In 8 Minutes
2
Error: An img element must have an "alt" attribute
Alt
attribute is necessary for element
img
by Valeri Tandilashvili
5 years ago
0
HTML
Error
2
Error: The align attribute on the "p" element is obsolete
align
attribute is removed from
p
element
by Valeri Tandilashvili
5 years ago
0
HTML
Error
2
Installing
ckeditor
package for textareas
by Valeri Tandilashvili
4 years ago
0
Laravel
packages
Laravel From Scratch
2
date format: yyyy-mm-dd
MySQL:
SELECT CONVERT(varchar, getdate(), 23)
MSSQL:
SELECT DATE_FORMAT(curdate(), "%Y-%m-%d");
by Valeri Tandilashvili
4 years ago
0
MySQL
MySQL & MSSQL query differences
2
Results: 1580