タグ

関連タグで絞り込む (0)

  • 関連タグはありません

タグの絞り込みを解除

HTMLとbrowserとarticleに関するefclのブックマーク (7)

  • Default styles for h1 elements are changing

    Browsers are starting to roll out changes in default UA styles for nested section headings. Developers should check that their sites don't rely on UA styles for certain cases to avoid unexpected results and failing Lighthouse checks. In this post, we'll have a look at what the incoming changes are, how to identify if it's an issue on your pages, and some hints for conformant and better-structured

    Default styles for h1 elements are changing
    efcl
    efcl 2025/04/17
    セクションに基づいた暗黙的な`<h1>`要素のデフォルトのスタイル(UAのスタイル)が変更される。 Firefox 138、Chrome 136以降にこの変更が含まれる
  • blocking=render: Why would you do that?! – CSS Wizardry

    14 August, 2024 blocking=render: Why would you do that?! Written by Harry Roberts on CSS Wizardry. Table of Contents Independent writing is brought to you via my wonderful Supporters. What is blocking=render? Blocking Status Blocking Files async, defer, and type=module Blocking Web Fonts A/B Testing and Experimentation tl;dr WebKit have recently announced their intent to implement the blocking=ren

    blocking=render: Why would you do that?! – CSS Wizardry
    efcl
    efcl 2024/08/22
    `blocking=render`について。 アンチフリッカースニペットのような意図的にページを非表示状態にしたい場合のユースケースについて
  • 仕様と実装から読み解くHTMLのloading属性 - dwango on GitHub

    こんにちは。ニコニコQセクションのHajime-san(GitHub)です。 稿では、HTMLのloading属性の仕様とブラウザの実装を解いていきます。これにより、ブラウザからのコンテンツ配信の最適化を支える判断材料の1つとなれば幸いです。 執筆の動機 筆者が開発に携わっているサービスであるニコニコオーディションが間接的に利用している社内ファミリーサービスについて、ふと自分のスマートフォンで見てみたところページの初期表示に時間がかかるように感じました。 オーディションシステムはiframe要素によって社内ファミリーサービスなどに専用のUIを埋め込むことが可能になっており、iframe要素のloading属性を用いた「遅延読み込み」(以下、遅延読み込みはloading属性によるもの)が効果的なのではないかと考えました。 まずは、実際にloading="lazy"を適用して読み込みが後回し

    仕様と実装から読み解くHTMLのloading属性 - dwango on GitHub
    efcl
    efcl 2023/11/15
    ブラウザごとの`img`/`iframe`の`loading=lazy`の挙動の違いについて
  • Introducing the popover API  |  Blog  |  Chrome for Developers

    Build with Chrome Learn how Chrome works, participate in origin trials, and build with Chrome everywhere.

    efcl
    efcl 2023/05/26
    `popover`属性について
  • Non-interactive Elements with the inert attribute

    Elements are interactive in multiple ways; they can be focused, clicked, edited or selected. Assistive technologies such as screen readers also interact with them. What if you wanted to disable all these interactions for a section of your webpage? The inert attribute covers this. Pre-existing Solutions The most basic way to disable all interactions is the disabled HTML attribute, it prevents focus

    Non-interactive Elements with the inert attribute
    efcl
    efcl 2022/05/01
    `inert`属性についての解説記事。 今まではfocusは`tabindex`、クリックは`pointer-events`、選択範囲は`user-select`、`aria-hidden`などの各種対応が必要だったが、まとめて不活性として設定できる属性。
  • 2021年のウェブ標準とブラウザ | gihyo.jp

    2021年になりましたね。 矢倉眞隆(myakura)です。ウェブ標準やブラウザに興味のあるウェブ開発者です。gihyo.jpでは2009年に「Web標準とその周辺技術の学び方」という連載をしていました。 今回は昨年の泉水さんに代わり、2021年のウェブ標準やブラウザの動向を占おうと思います。2020年は世界もブラウザもそれなりに大きな出来事がありましたので、2020年の動きをまずおさえ、そのうえで2021年はどうなるのかを考えてみました。 W3Cのプロセス改訂でLiving Standardライクな仕様の改訂が増えていく W3Cは2020年9月に、新しいプロセス文書と特許ポリシーを公開しました。 新しい文書プロセスはW3Cの組織の定義や標準化の流れ、意思決定などについて定めた文書です。ここ数年は毎年更新されていますが、2020年はこれまでと比べて最大級とプレスリリースでもうたわれています

    2021年のウェブ標準とブラウザ | gihyo.jp
    efcl
    efcl 2021/01/05
    2020年におけるHTML、CSS、DOM APIに変化についてまとめた記事。 また、IE 11と旧Edgeのサポート状況、UA Client HintやPrivacy Sandboxなどの取り組みについてなど幅広くウェブ(標準)の状況について扱っている
  • カクヨムでの縦組み表示の実装と、縦書きWebの将来に向けて (builderscon tokyo 2018) - Hatena Developer Blog

    こんにちは、Webアプリケーションエンジニアのid:nanto_viです。先日開催されたbuilderscon tokyo 2018において「カクヨムでの縦組み表示の実装と、縦書きWebの将来に向けて」という発表を行いました。Webブラウザ上で、小説を縦組みで読むという機能に関するものです。その発表資料に補足と質疑応答の内容を加えて公開します。 なお、当日は資料を単一のHTMLファイルに切り出して、それをFirefoxで開き200%にズームした画面を映しながらプレゼンテーションしました。 カクヨムでの縦組み表示の実装と、縦書きWebの将来に向けて 自己紹介 nanto_vi (TOYAMA Nao) 株式会社はてな Webアプリケーションエンジニア Perl, TypeScript カクヨム KADOKAWA × はてな による小説投稿サイト 2016年2月正式オープン 縦組み表示 補足

    カクヨムでの縦組み表示の実装と、縦書きWebの将来に向けて (builderscon tokyo 2018) - Hatena Developer Blog
    efcl
    efcl 2018/09/12
    縦書き表示を行った際のブラウザのバグや問題への対象方法について
  • 1