Skip to content

Commit da07360

Browse files
committed
Combine "Web development" notes under a folder.
1 parent f9e46c9 commit da07360

8 files changed

+20
-44
lines changed

content/notes/Web_development.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
+++
2-
title = "Web development > -webkit-text-size-adjust"
2+
title = "-webkit-text-size-adjust"
33
+++
44

55
Safari on iOS might scale text if it thinks the rendered content will be too small. Set `-webkit-text-size-adjust: 100%;` on `body` to bypass that behaviour.
66

77
## References
88

99
- [Stack Overflow: Some font-size's rendered larger on Safari (iPhone)](https://stackoverflow.com/questions/3226001/some-font-sizes-rendered-larger-on-safari-iphone)
10-
11-
## See also
12-
13-
- [Web development: Tips](@/notes/Web_development.md#Tips)

content/notes/Web_development_Disable_vendor_styling_for_input_type_search_elements.md renamed to content/notes/Web_development/Disable_vendor_styling_for_input_type_search_elements.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "Web development > Disable vendor styling for input[type=\"search\"] elements"
2+
title = "Disable vendor styling for input[type=\"search\"] elements"
33
+++
44

55
The following snippets should be added to a CSS stylesheet.
@@ -23,7 +23,3 @@ To remove Safari left inner padding under macOS or the magnifying glass on the l
2323
## References
2424

2525
- [Stack Overflow: How do I remove all default Webkit search field styling?](https://stackoverflow.com/a/77190241)
26-
27-
## See also
28-
29-
- [Web development: Tips](@/notes/Web_development.md#Tips)

content/notes/Web_development_External_link_Unicode_symbols.md renamed to content/notes/Web_development/External_link_Unicode_symbols.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "Web development > External link Unicode symbols"
2+
title = "External link Unicode symbols"
33
+++
44

55
There are a variety of Unicode symbols that can be used as symbols of an external link:
@@ -44,7 +44,3 @@ There is a [Unicode proposal for introduction of an external link symbol](https:
4444
## References
4545

4646
- [miguelmota's gist](https://gist.github.com/miguelmota/322c89234d60de578f37d3c6d30f7e41)
47-
48-
## See also
49-
50-
- [Web development: Tips](@/notes/Web_development.md#Tips)

content/notes/Web_development_HTMLElement_blur_method.md renamed to content/notes/Web_development/HTMLElement_blur_method.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "Web development > HTMLElement: blur() method"
2+
title = "HTMLElement: blur() method"
33
+++
44

55
The `blur()` method makes the element lose keyboard focus.
@@ -13,7 +13,3 @@ document.activeElement.blur();
1313
## References
1414

1515
- [MDN Web Docs: HTMLElement: blur() method](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/blur)
16-
17-
## See also
18-
19-
- [Web development: Tips](@/notes/Web_development.md#Tips)

content/notes/Web_development_Relative_URL.md renamed to content/notes/Web_development/Relative_URL.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "Web development > Relative URL"
2+
title = "Relative URL"
33
+++
44

55
To create a URL relative to the currently running script, use `document.currentScript.src` as follows:
@@ -14,7 +14,3 @@ const url = new URL(
1414
## References
1515

1616
- [MDN Web Docs: Resolving relative references to a URL](https://developer.mozilla.org/en-US/docs/Web/API/URL_API/Resolving_relative_references)
17-
18-
## See also
19-
20-
- [Web development: Tips](@/notes/Web_development.md#Tips)
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
+++
2+
title = "Web development"
3+
+++
4+
5+
Web development is the work involved in developing a website for the Internet.
6+
7+
Child notes:
8+
9+
- [Disable vendor styling for `input[type="search"]` elements](@/notes/Web_development/Disable_vendor_styling_for_input_type_search_elements.md)
10+
- [External link Unicode symbols](@/notes/Web_development/External_link_Unicode_symbols.md)
11+
- [HTMLElement: blur() method](@/notes/Web_development/HTMLElement_blur_method.md)
12+
- [`rel="preconnect"`](@/notes/Web_development/rel_preconnect.md)
13+
- [Relative URL](@/notes/Web_development/Relative_URL.md)
14+
- [`-webkit-text-size-adjust`](@/notes/Web_development/-webkit-text-size-adjust.md)
Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
11
+++
2-
title = "Web development > rel=\"preconnect\""
2+
title = "rel=\"preconnect\""
33
+++
44

55
The `preconnect` keyword for the `rel` attribute of the `<link>` element allows one to create a connection to the origin early so as to speed up fetches to that origin in the near future.
66

77
## References
88

99
- [MDN Web Docs: `rel="preconnect"`](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Attributes/rel/preconnect)
10-
11-
## See also
12-
13-
- [Web development: Tips](@/notes/Web_development.md#Tips)

0 commit comments

Comments
 (0)