This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 4.8.3 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: localhost | |
-- Generation Time: Sep 11, 2018 at 09:52 AM | |
-- Server version: 5.5.60-MariaDB | |
-- PHP Version: 7.1.21 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2>Horizontal List</h2> | |
<div class="label"> | |
This is the Label and it is really long | |
</div> | |
<ul class="list"> | |
<li>HTML</li> | |
<li>CSS</li> | |
<li>JavaScript</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>Resize Test</title> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
#toggle_me {margin:5px; padding:5px; border:1px dashed blue; background-color: #e5e5e5;} | |
#hidden_div {margin:5px; padding:5px; border:1px dashed red; background-color: #e5e5e5;} |