- In Feedback Hub, click "Add new Feedback"
- Choose "Microsoft Edge" as the category
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
| //--------------------------------------------------------------------------- | |
| /** | |
| * ReinventTheWheel | |
| */ | |
| //--------------------------------------------------------------------------- | |
| // private ReinventTheWheel(): void | |
| // { | |
| // const html = document.documentElement; |
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
| // | |
| // Call this function and pass in the name of the font you want to check for availability. - https://www.kirupa.com/html5/detect_whether_font_is_installed.htm | |
| // | |
| function doesFontExist(fontName) { | |
| // creating our in-memory Canvas element where the magic happens | |
| var canvas = document.createElement("canvas"); | |
| var context = canvas.getContext("2d"); | |
| // the text whose final pixel size I want to measure | |
| var text = "abcdefghijklmnopqrstuvwxyz0123456789"; |
To:
Their Data Protection Officer, usually dpo@companyname.com
Subject:
Request for erasure (GDPR)
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
| /* ---------------------------------------------------------- */ | |
| /* */ | |
| /* A media query that captures: */ | |
| /* */ | |
| /* - Retina iOS devices */ | |
| /* - Retina Macs running Safari */ | |
| /* - High DPI Windows PCs running IE 8 and above */ | |
| /* - Low DPI Windows PCs running IE, zoomed in */ | |
| /* - Low DPI Windows PCs and Macs running Firefox, zoomed in */ | |
| /* - Android hdpi devices and above */ |
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
| :root { | |
| --phi: 1.618033988749895; | |
| --perfect-fourth: calc(4/3); | |
| } | |
| html { | |
| line-height: 1.5; | |
| line-height: var(--phi); | |
| } |
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
| using System; | |
| using System.Text; | |
| namespace Typography.Extensions | |
| { | |
| /// <summary> | |
| /// Contains extension methods for adding soft hyphens. | |
| /// </summary> | |
| public class SoftHyphenHelperExtensions |
This document now exists on the official ASP.NET core docs page.
- Application
- Request Handling