並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 36 件 / 36件

新着順 人気順

FIXEDの検索結果1 - 36 件 / 36件

タグ検索の該当結果が少ないため、タイトル検索結果を表示しています。

FIXEDに関するエントリは36件あります。 cssJavaScriptweb制作 などが関連タグです。 人気エントリには 『CSSのinsetプロパティで上下左右の中央に配置する時の「position: fixed;」での新しい記述方法』などがあります。
  • CSSのinsetプロパティで上下左右の中央に配置する時の「position: fixed;」での新しい記述方法

    中央揃えの古典的なテクニックの一つ、モーダルやメッセージなどを表示する時に適したposition: fixed;での新しい記述方法を紹介します。 古い記述方法では、負のパーセンテージを使用していたり、あまり直感的ではないCSSでしたが、新しい記述方法ではそれらが解消されています。 CSSの中央揃えのいろいろな方法は、以前の記事をご覧ください。 現在主流の5つのテクニックからそれぞれの特徴と最も万能で信頼できるテクニックを評価しています。

      CSSのinsetプロパティで上下左右の中央に配置する時の「position: fixed;」での新しい記述方法
    • 11月末のChrome 108でビューポートのサイズ変更動作が変更、position: fixed;は配置がずれる可能性があります

      11月末にリリース予定のChrome 108で、ビューポートのサイズ変更動作が変更されます。簡単に言うと、Android版Chrome 108の挙動はiOS版Safariと同じになり、より一貫性のあるクロスブラウザの動作が実現されます。 サイズ変更動作の内容とサイズ変更の仕組み、Chrome 108のリリースまでに何を準備しておけばよいのかを紹介します。 特に、position: fixed;を使用している要素やビューポート相対単位に依存している要素は配置がずれてしまう可能性があるので、対応が必要です。 Prepare for viewport resize behavior changes coming to Chrome on Android by Bramus 下記は各ポイントを意訳したものです。 ※元サイト様のライセンスに基づいて翻訳しています。 はじめに レイアウトビューポートと

        11月末のChrome 108でビューポートのサイズ変更動作が変更、position: fixed;は配置がずれる可能性があります
      • マイクロソフト、Chromiumベースの「Microsoft Edge WebView2」.NET正式対応版リリース。バージョンを固定できる「Fixed Version distribution mode」も

        マイクロソフト、Chromiumベースの「Microsoft Edge WebView2」.NET正式対応版リリース。バージョンを固定できる「Fixed Version distribution mode」も マイクロソフトは、ネイティブアプリケーションに埋め込めるコンポーネント「Microsoft Edge WebView2」(以下、WebView2)の.NET正式対応版がリリースされました。.NET Core、.NET Framework、WinForms、WPFアプリケーションに対応しています。 10月にはWin32 C/C++対応版が先行して登場しており、.NET対応版の登場が待たれていました。 Today, we are excited to announce that Microsoft Edge WebView2 is Generally Available for prod

          マイクロソフト、Chromiumベースの「Microsoft Edge WebView2」.NET正式対応版リリース。バージョンを固定できる「Fixed Version distribution mode」も
        • 【コピペ可】background-attachment: fixed;がスマホ(iOSのSafari)で効かない問題を完全に解決する【CSSのみ】

          <!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <link rel="stylesheet" href="./destyle.css" /> <link rel="stylesheet" href="./style.css" /> </head> <body> <div class="Firstview">FirstView</div> <section class="Section"> <div class

            【コピペ可】background-attachment: fixed;がスマホ(iOSのSafari)で効かない問題を完全に解決する【CSSのみ】
          • How we found and fixed a rare race condition in our session handling

            AI & MLLearn about artificial intelligence and machine learning across the GitHub ecosystem and the wider industry. Generative AILearn how to build with generative AI. GitHub CopilotChange how you work with GitHub Copilot. LLMsEverything developers need to know about LLMs. Machine learningMachine learning tips, tricks, and best practices. How AI code generation worksExplore the capabilities and be

              How we found and fixed a rare race condition in our session handling
            • 9 Of The ‘World’s Worst Logos’ Fixed By Graphic Designer Emanuele Abrate

              9 Of The ‘World’s Worst Logos’ Fixed By Graphic Designer Emanuele Abrate Emanuele Abrate is a graphic designer from Italy who recently took up an interesting challenge – he decided to give 9 of the ‘world’s worst logos’ complete makeovers. You’ve probably seen some of these logos posted on various meme pages since the dawn of the internet – and the designer finally brought them to the 21st century

                9 Of The ‘World’s Worst Logos’ Fixed By Graphic Designer Emanuele Abrate
              • Neo Geo Dev: Fixed Point Numbers

                Let's take a look at how to work with decimal numbers on an ancient cpu. Modern computers work with decimals, like 0.5, using a system called floating point. If you remember scientific notation from your science classes, it's based on the same idea. These types of numbers are handled by the cpu in modern computers, and so programs can calculate with them very quickly. The Neo Geo can not work with

                • position: fixed;を使わずにヘッダー/フッターを固定する方法【FlexBox解説】

                  この記事ではCSSのFlexBoxという機能を使ってヘッダー/フッター固定のWebサイトを作る方法について紹介します。 ヘッダー/フッターを固定する方法をネットで調べてみると「position: fixed;に設定すれば良い」という記事が数多くヒットします。 この方法はヘッダー/フッターの高さが固定のときやデザイン的に敢えてメイン要素に被せたいというときは良いですが、そうではないときメイン要素がヘッダー/フッターに重なってしまって見えないという問題点があります。(詳細は後述) そこでこの記事ではよくある"position: fixed;"ではなく"FlexBox"を使って、ヘッダー/フッターが可変長の場合でも対応できる固定方法について紹介します。 想定読者 これからHTML/CSSの勉強をしようとしている初心者の方。 1から詳しく解説しているのである程度HTML/CSSを書いたことがある方

                    position: fixed;を使わずにヘッダー/フッターを固定する方法【FlexBox解説】
                  • SEO mistakes I've made and how I fixed them - Maxime Heckel's Blog

                    October 13, 2020 / 15 min read Last Updated: June 14, 2021 From 0 to 90k impressions in about a year, following Search Engine Optimization good practices was key to help to grow my blog and my audience. However, when I started it, I made terrible mistakes that some SEO literate people could almost qualify as self-sabotage. Thus, I want to dedicate this blog post to look back at 3 issues that cause

                      SEO mistakes I've made and how I fixed them - Maxime Heckel's Blog
                    • Found means fixed: Secure code more than three times faster with Copilot Autofix

                      Developers are shipping software faster than previously imaginable, releasing new features early and often. Yet despite their best efforts to code securely, software vulnerabilities inadvertently make their way into production and continue to be a leading cause of breaches today. Compounding this, many developers find security requirements to be difficult to understand and implement, making it har

                        Found means fixed: Secure code more than three times faster with Copilot Autofix
                      • Found means fixed: Introducing code scanning autofix, powered by GitHub Copilot and CodeQL

                        AI & MLLearn about artificial intelligence and machine learning across the GitHub ecosystem and the wider industry. Generative AILearn how to build with generative AI. GitHub CopilotChange how you work with GitHub Copilot. LLMsEverything developers need to know about LLMs. Machine learningMachine learning tips, tricks, and best practices. How AI code generation worksExplore the capabilities and be

                          Found means fixed: Introducing code scanning autofix, powered by GitHub Copilot and CodeQL
                        • スマホサイト用アニメーション付きフッターfixed固定メニューHTML&CSS12選!簡単コピペで使用可!【タブバー/jQuery/デモ】

                            スマホサイト用アニメーション付きフッターfixed固定メニューHTML&CSS12選!簡単コピペで使用可!【タブバー/jQuery/デモ】
                          • 表組以外の要素幅も均等にできる「table-layout: fixed」の便利な使い方

                            「table-layout: fixed;」の使い方 基本の使い方 セルごとに文章量の違う表組を作ってみました。 「table-layout」プロパティを何も指定しない(初期値:autoと同様)とこのようになります。 列幅は、文章量が多い列が長くなり、少ない列が短くなっていますね。 では、この表組に「table-layout: fixed;」を指定してみます。 するとこのように、列幅が均等に分割されました。 列数がいくつあってもすべて均等幅になります。 表示している画面のサイズから自動で計算し、均等に列幅を調整してくれるのです。 一部の列幅だけ指定したい場合 すべての列幅を均等にするのではなく、一部だけ「○px」に固定して、残った列の幅を均等にすることもできます。 CSS table { table-layout: fixed; } table th:first-of-type { wid

                              表組以外の要素幅も均等にできる「table-layout: fixed」の便利な使い方
                            • Production ready eBPF, or how we fixed the BSD socket API

                              Production ready eBPF, or how we fixed the BSD socket API2022-02-17 As we develop new products, we often push our operating system - Linux - beyond what is commonly possible. A common theme has been relying on eBPF to build technology that would otherwise have required modifying the kernel. For example, we’ve built DDoS mitigation and a load balancer and use it to monitor our fleet of servers. Thi

                                Production ready eBPF, or how we fixed the BSD socket API
                              • JS Dates Are About to Be Fixed | TimeTime

                                The problem​ Of all the recent changes coming to ECMAScript, my favorite by far is the Temporal proposal. This proposal is very advanced, and we can already use this API through the polyfill provided by the FullCalendar team. This API is so incredible that I will likely dedicate several blog posts to highlighting its key features. However, in this first post, I will focus on explaining one of its

                                • Fixed Points and Diagonal Arguments

                                  Fixed Points and Diagonal Arguments Posted by Bartosz Milewski under Programming [5] Comments What does Gödel’s incompletness theorem, Russell’s paradox, Turing’s halting problem, and Cantor’s diagonal argument have to do with the fact that negation has no fixed point? The surprising answer is that they are all related through Lawvere’s fixed point theorem. Before we dive deep into category theory

                                    Fixed Points and Diagonal Arguments
                                  • Why puma workers constantly hung, and how we fixed by discovering the bug of Ruby v2.5.8 and v2.6.6

                                    While running Rails puma servers in production, we were seeing the incident that some old worker processes suddenly got stuck regardless of no change in the amount or trend of requests. I found out the root cause and reported it to the upstream. This issue still exists in Ruby 2.6.0 and can be found as far back as Ruby 2.5.0. If you just want a summary of the bug, see ruby-lang#17669. What Happene

                                      Why puma workers constantly hung, and how we fixed by discovering the bug of Ruby v2.5.8 and v2.6.6
                                    • F# developer stories: how we've finally fixed a 9-year-old performance issue - .NET Blog

                                      The PR describes the changes in much greater detail and gives more benchmarks. Take a look! Don’t be scared by its size – most updates are baselines for catching IL regressions. Lessons learned 📝 Even though technically this is a happy ending, it’s a shame that things took this long. How can we – as the F# community – avoid having similar situations in the future? Here are a few reminders: When c

                                        F# developer stories: how we've finally fixed a 9-year-old performance issue - .NET Blog
                                      • eyes fixed her His on | ならべかえ 英語 リスニング

                                        単語をならべかえて英文を完成させよう(レベル5)「eyes fixed her His on」「彼の目は彼女にくぎ付けだった。」#英語学習 | ならべかえ 英語 リスニング

                                          eyes fixed her His on | ならべかえ 英語 リスニング
                                        • table-layout: fixed; せずに text-overflow: ellipsis; する - コンパイラかく語りき

                                          長過ぎる文字列に対して、文末に「…」をつけて省略して表示したい時があります。 これをHTMLのtable要素で実現する方法について書きます。 固定幅テーブル まず、行が固定幅で良いのなら以下のように書けます。 table { table-layout: fixed; } td { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } これで、tdの文字列が長すぎる場合にhogehogehoge... のように表示されます。 でも実務では、行は可変幅のままであって欲しいケースがほとんどだと思います。 可変幅テーブル 可変幅を保ったまま、tdの中身を省略記法にしたい場合は以下のとおりです。 table { /* table-layout: fixed; */ } td { white-space: nowrap; o

                                            table-layout: fixed; せずに text-overflow: ellipsis; する - コンパイラかく語りき
                                          • GitHub - tc39/proposal-structs: JavaScript Structs: Fixed Layout Objects

                                            Structs are declarative sealed objects. There are two kinds of structs: unshared structs and shared structs. Unshared structs behave as if they were sealed objects. Shared structs have additional restrictions and can be concurrently accessed from different agents. Both unshared and shared structs have the following properties: Opaque storage like plain objects. Not aliasable via ArrayBuffer or Sha

                                              GitHub - tc39/proposal-structs: JavaScript Structs: Fixed Layout Objects
                                            • Announcing General Availability of Microsoft Edge WebView2 for .NET and Fixed Version distribution mode

                                              Today, we are excited to announce that Microsoft Edge WebView2 is now generally available for use in production .NET 5, .NET Core, and .NET Framework WinForms and WPF applications on existing Windows versions! Additionally, we are thrilled to announce that WebView2’s Fixed Version distribution mode is also generally available for production applications. Previously, at Build, we introduced the .NE

                                                Announcing General Availability of Microsoft Edge WebView2 for .NET and Fixed Version distribution mode
                                              • How we automatically fixed thousands of Ruby 2.7 deprecation warnings

                                                How we automatically fixed thousands of Ruby 2.7 deprecation warnings The upgrade to Ruby 2.7 for GitLab involved thousands of deprecation warnings across hundreds of files. Here's how we fixed most of them. Ruby 3.0 was just released on Dec. 25, 2020, with some new features and some breaking changes. GitLab was at Ruby 2.6, and we wanted to upgrade to Ruby 2.7 in preparation to eventually upgrade

                                                  How we automatically fixed thousands of Ruby 2.7 deprecation warnings
                                                • WEBブログ | スマホで『background-attachment: fixed』が効かないときの解決法 | RunLand(ランランド)株式会社

                                                  全国対応!外注・下請けのホームページ制作会社をお探しの会社様。 人員リソース不足、技術不足でお困りなら外注・下請け専門のランランドにお任せ下さい

                                                    WEBブログ | スマホで『background-attachment: fixed』が効かないときの解決法 | RunLand(ランランド)株式会社
                                                  • Fixed Headers And Jump Links? The Solution Is Scroll-margin-top | CSS-Tricks

                                                    DigitalOcean provides cloud products for every stage of your journey. Get started with $200 in free credit! The problem: you click a jump link like <a href="#header-3">Jump</a> which links to something like <h3 id="header-3">Header</h3>. That’s totally fine, until you have a position: fixed; header at the top of the page obscuring the header you’re trying to link to! Fixed headers have a nasty hab

                                                      Fixed Headers And Jump Links? The Solution Is Scroll-margin-top | CSS-Tricks
                                                    • GitHub - lukeed/uid: A tiny (130B to 205B) and fast utility to generate random IDs of fixed length

                                                      A tiny (130B to 205B) and fast utility to randomize unique IDs of fixed length Fast object IDs. Available for Node.js and the browser. Generate randomized output strings of fixed length using lowercase alphanumeric characters (a-z0-9). To produce IDs in UUID.V4 format, please see @lukeed/uuid. This module offers multiple modes for your needs: uid The default is "non-secure", which uses Math.random

                                                        GitHub - lukeed/uid: A tiny (130B to 205B) and fast utility to generate random IDs of fixed length
                                                      • WEBブログ | position:fixedでヘッダ固定時のページ内外リンクのズレを解消するテクニック | RunLand(ランランド)株式会社

                                                        全国対応!外注・下請けのホームページ制作会社をお探しの会社様。 人員リソース不足、技術不足でお困りなら外注・下請け専門のランランドにお任せ下さい

                                                          WEBブログ | position:fixedでヘッダ固定時のページ内外リンクのズレを解消するテクニック | RunLand(ランランド)株式会社
                                                        • 「position: fixed」でスクロール固定したヘッダーを横にスクロールさせる | WEBの技

                                                          ヘッダーを「position: fixed」にて実装しているサイトなどで コンテンツの横幅が決まっている場合、 コンテンツ幅よりもブラウザを縮めてサイトを閲覧した際に不具合が生じます。 コンテンツ部分はブラウザ幅以上の部分に関しては横スクロールで見れるのですが、 「position: fixed」を実装しているヘッダーは横スクロールしてくれません。 ですがそれを解消するための方法がありました。 jQueryで強制的に動かす jQuery

                                                            「position: fixed」でスクロール固定したヘッダーを横にスクロールさせる | WEBの技
                                                          • table-layout:fixed;を指定してもテーブルのwidthがうまく効かない場合の対処法

                                                            テーブル内のthやtdに対して、CSSで横幅を指定してもうまく効かない場合の対処法をご紹介いたします。 複雑なテーブルを実装する時なんかは役立つと思います。 よくある解決法 「table-layout:fixed;」 よく紹介されている対処法は、該当のテーブルに対して「table-layout:fixed;」を指定してあげる方法です。 例えば、thだけを横幅100pxにしたい場合は、以下のように指定します。

                                                              table-layout:fixed;を指定してもテーブルのwidthがうまく効かない場合の対処法
                                                            • Scaling Laws and Compute-Optimal Training Beyond Fixed Training Durations

                                                              Scale has become a main ingredient in obtaining strong machine learning models. As a result, understanding a model's scaling properties is key to effectively designing both the right training setup as well as future generations of architectures. In this work, we argue that scale and training research has been needlessly complex due to reliance on the cosine schedule, which prevents training across

                                                              • Blog: A deep dive into CVE-2023-2163: How we found and fixed an eBPF Linux Kernel Vulnerability

                                                                This blog post takes a look at the years where eBPF was one of the kernel subsystems that grabbed the attention of a lot of security researchers. We will tell the story of how we discovered CVE-2023-2163, what our root-cause analysis process looked like, and what we did to ultimately fix the issue.

                                                                  Blog: A deep dive into CVE-2023-2163: How we found and fixed an eBPF Linux Kernel Vulnerability
                                                                • Oil 0.10.0 - Can Unix Shell Error Handling Be Fixed Once and For All?

                                                                  Error Handling Overhaul: try and _status So, can shell's error handling be fixed once and for all? I believe Oil 0.10.0 has done this. It's the first shell with reliable error handling in 50 years :-) Basic Idea Recall that Oil is designed to be familiar to Python and JavaScript users. So a program should stop by default on any failure, like: cp: cannot create regular file '/nonexistent': Permissi

                                                                    Oil 0.10.0 - Can Unix Shell Error Handling Be Fixed Once and For All?
                                                                  • コア電圧モード Offset/Fixed/Adaptive の違い : Misc Mods

                                                                    (2020/1/6 図を修正、マザーボードメーカー固有の挙動を記載) CPUの電圧は、上げることでオーバークロックをしたり、下げることで消費電力の削減をしたりと、パソコン運用の幅を広げる重要な設定である。 特に消費電力削減の点においては、どのモードがどのように振る舞うかがわからなければ、果たして無駄な電力をどれくらい消費しているかもわからないので、各モードの挙動を理解することが望ましい。 ところが日本語でヒットする資料では、電圧固定(Fixed/Override)以外の正確な説明をしているものがほとんど見当たらないため、本記事でざっと概要を述べることにする。 なお本記事で説明しているモードはIntel製CPUを想定している。AMDはクロックの挙動が異なる。 ●Default/Autoモード 青の線が標準モードにおける、各動作クロックのコア電圧の定格での目安(VID)。 そのCPUがどのクロ

                                                                      コア電圧モード Offset/Fixed/Adaptive の違い : Misc Mods
                                                                    • Linux x86 32-bit Is Vulnerable To Retbleed But Don't Expect It To Get Fixed - Phoronix

                                                                      Show Your Support: This site is primarily supported by advertisements. Ads are what have allowed this site to be maintained on a daily basis for the past 19+ years. We do our best to ensure only clean, relevant ads are shown, when any nasty ads are detected, we work to remove them ASAP. If you would like to view the site without ads while still supporting our work, please consider our ad-free Phor

                                                                        Linux x86 32-bit Is Vulnerable To Retbleed But Don't Expect It To Get Fixed - Phoronix
                                                                      • CSS absolute, fixedでtop:0;right:0;left:0;bottom:0;設定 | アールエフェクト

                                                                        top:0; right:0; bottom:0; left:0;での違い 最初にtop:0; right:0; bottom:0; left:0;を設定し、positionのfixed, absoluteでどのような違いがあるか確認してみましょう。 CSSのpositionプロパティをfixedに設定し、top:0; right:0; bottom:0; left:0, backgroudColorを設定するとブラウザの画面全体に背景色が広がります。 <!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>fixed, absoluteの違い</title> </h

                                                                          CSS absolute, fixedでtop:0;right:0;left:0;bottom:0;設定 | アールエフェクト
                                                                        • 【jQuery】fixedで固定したフローティングアイテムをフッターの上で止める方法 | HPcode(えいちぴーこーど)

                                                                          フローティングアイテムをフッターの上で止める方法です。フッターと色が被ったりしてフッター上で止めるという実装もたまにやりたくなります。 jQueryを使ってフッターの高さやスクロールの位置をゴリゴリと取得していくというやり方ですね… 動きとしては以下のような感じになります。(右下の「トップへ」というボタンが固定されています)

                                                                            【jQuery】fixedで固定したフローティングアイテムをフッターの上で止める方法 | HPcode(えいちぴーこーど)
                                                                          1

                                                                          新着記事