My Tumblr blog is now using a background image with background-attachment:fixed
It works perfectly on Windows and Android
However, according to caniuse.com (link to article) this property works for every browser except for Safari, it zoomed in and blurry.
Is there any way I can make the background exclusive to Safari?
If not, how can I use the property background-color:black as an alternative if the exclusive image cannot be used?
Thank you!
Is there a way to make a background image that's exclusively to Safari?
84 Views Asked by diacetyl At
1
There are 1 best solutions below
Related Questions in BACKGROUND
- Problem with Android App background service stoping
- flutter stripe_android:verifyReleaseResources'. > A failure occurred while executing com.android.build.gradle.tasks > Android resource linking failed
- How to Properly Interrupt the Download of a Background Image Using JavaScript
- Maintaining Background Consistency as Button Count Decreases
- Issue with simple java app that removes background from one image and overlays it onto another image and downloads the processed image
- Is there a way to gather the SSIDs of the connected networks in the background?
- Unity 2D - animated background
- CSS Animating Button Background - how to make this background move horizontally not vertically
- Change background on Tab react native app
- How can I edit ggMarginal background to match the plot background?
- How to structure a SwiftUI Push To Talk App backend?
- MPAndroidChart - Fill gradient horizontally
- Chrome Extension Highlight Feature Not Applying Background Color
- CSS image in div ignoring padding
- Under the swiftUI framework, the timer cannot continue to count in the background
Related Questions in BACKGROUND-IMAGE
- Put an image behind the title in a WP, WooCommerce "shop" page
- Tailwind CSS background image does not work on github pages
- Trying to put a background image underneath a spiderplot in ggplot, though image is covering the plot
- CSS - Element with 2 background images - How to drop shadow just around one of them?
- Is there anyway to have containers maintain border radius when being scrolled off screen?
- Css text styling with image
- CSS image in div ignoring padding
- Image not displaying under Nav bar
- CSS background-image is overflowing
- My image is not working as background image
- Flutter how to remove image background
- Background image not displaying when applied via class with embedded CSS
- Can not use background-image with webpack5
- How to prevent background repeat image from cutting off
- CSS background-image displaying incorrectly
Related Questions in MOBILE-SAFARI
- Next.js carousel component loads instagram basic display api perfectly except in Safari browser
- How to hide the address bar in mobile safari for a 100vh app?
- Webapp exiting fullscreen when dragging mui slider in iPads
- React Native/Expo Web: Input Focus Triggers Pull-to-Refresh (iOS Safari)
- In chorme horizontal scroll work , but in safari browser its not work
- 100vh doesnt work properly on Safari iOS "Single tab" configuration
- Playing Blobs in html5 audio causing interruptions
- Issue with Web Page Loading Timeout after iOS 17.0 Update
- Are there Peculiar differences between Android and IOS browsers that could make some JavaScript run in Android but not on IOS Browser?
- A tag target="_blank" in safari ios history start from 2?
- Incorrect SVG rendering on iOS browsers
- iOS Homescreen Web Bookmark - Clicking home while the camera is open prevents the camera from opening again
- History API in Safary | issue accessing a link with anchor
- React: fixed block isn't repainting in Mobile Safari
- Remember login using laravel auth login failed only on mobile-Safari
Related Questions in BACKGROUND-COLOR
- Mixed color rendering in a JTable
- Get correct background color for merged cells in xlsx file
- Changing the color of a parent div to the color of active child element on click
- i've styled my hr tag but it doesn't work, what should i do?
- Background gradient 100% height, not working on mobile
- Can't get "background-color" property from item using printThis library
- Changing facecolor with matplotlib widgets
- How to change option background color on hover
- Powershell: Get the background color of the Windows Terminal
- trying to set up random backgroundcolors with eventlistener whilst hovering over grid-cells with js
- Change div's background color to random with mouseover and keep divs squre and flex within a container
- Colour a binary image in matlab?
- How to change Axes background color into transparant in matplotlib
- How to change the background of PrimeNG's p-card component after ngAfterViewInit?
- Changing Cell Color Using Worksheet_SelectionChange and a Module
Related Questions in BACKGROUND-ATTACHMENT
- iOS targeting javascript does not work on Ipad, only iphone
- Is there a way to make a background image that's exclusively to Safari?
- Can a fixed background-image that's clipped to text scroll in Firefox?
- Fix for `background-attachment: fixed` + `background-size: cover` on iOS
- background-attachment: fixed breaking with translateX(0)
- Honeycomb css design with background-attachment: fixed and css transform issue - image not spanning across hexagons
- How to make background image stay while text scrolls? (Safari)
- why does background-attachment works differently in body and div
- Jumbotron Fixed Image Jumps
- How do I make local attached repeating linear gradients
- How to stretch image with background-attachment: fixed to a transform: scaled div?
- How does background-attachment work with its children?
- Safari "background-attachment: local" scroll bug
- background attachment:fixed how to make the image "not full screen"?
- What does background-attachment exactly do?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You can use a library like Modernizr. https://modernizr.com/
Once loaded this will add classnames to your html you can then use this to target specific css in your markup.
However Modernizr is a big library if this is all you are doing. I always preferred this library which is much much smaller:
https://rafael.adm.br/css_browser_selector/
With this you can then target browsers specifically using css, for example.
There are lots of examples on that page. You can combine and nest and also target specific versions as well as operating systems.
Alternatively you could also relatively easily roll your own function:
I would say though, however that I would be pretty certain you can achieve what you want using css and not have to write a hack or fallback just for Safari.