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?
79 Views Asked by diacetyl At
1
There are 1 best solutions below
Related Questions in BACKGROUND
- X3DOM Inline Background skyColor
- CSS background property applied to HTML Input element within Table cell
- Changing background of button every second
- jQuery background animation - better performance
- Starting a ScheduledExecutorService from a servlet with a set of parameters
- Change button background with an action
- How to control multithreaded background jobs in for loop in shell script
- background is not working properly
- Fixed background adjusted to the monitor size
- How to print an ArrayList in processing and how to update the background
- Background image animation not working in Firefox
- How can i add an image as background in Chartjs?
- backgrounds Slideshow, but text scrolling
- Java replacing the background of an image
- Is there a way to override default CSS of HTML5 form validation messages
Related Questions in BACKGROUND-IMAGE
- Background-image rendering causes blurring of HD background
- Fixed background adjusted to the monitor size
- css3: remove background image (background-image:none; not working)
- Background image sometimes not showing
- How can i add an image as background in Chartjs?
- Timer Background transition
- Semantic Background Image
- Positioning a background image in an element with an offset from the bottom
- Background picture won't stretch below fixed footer
- Visual Studio hangs up on adding images in local root folder Resources?
- Misalignment between centered Background image and centered DIV depending on browser width
- How resolve issue with background-image linear-gradient?
- backkground image is only displaying after do loggin in Spring Server
- align transparent div over carousel background image in bootstrap
- Multiple screen support Windows Phone 8
Related Questions in MOBILE-SAFARI
- iOS Safari address bar causes sticky header to be jumpy
- jQuery on('change') logic behaving wierdly in ios 8.2/8.3
- Parallax causing vertical scroll issues in Safari (and iOS Safari)
- Preventing body scrolling to top in mobile Safari/iPad/iOS 8
- iPhone slider in Javascript - issue in Safari
- Can a photo taken from iOS safari input file be saved to camera roll?
- What causes some iOS web pages to not continue scrolling when swiping finger is released?
- CSS background-color transition not working in specific browsers (desktop + mobile)
- How often do Apple update fixes for Safari on iOS?
- Mobile Safari parallax scroll not working
- CSS animation for both mouse hover and touch (iOS)
- Prevent modal screen from scrolling in mobile safari
- HTML, Canvas Path2D alternative.
- Annoying Bootstrap Menu issue in Safari
- Using .click() Method with Mobile Safari
Related Questions in BACKGROUND-COLOR
- Setting % of a background color programmatically
- Color Filters on Custom Shaped ImageViews
- Change the View BackgroundColor on Tap
- Changing Row Color by specific Condition WPF Datagrid
- Change SVG image color using Css or do it manually in SVG file
- Change backcolor according to color selected from combobox
- How to Change background color of the cell if the cell is being edited
- Checking code change background image with over link with jquery
- CSS: How to set up gradient background cross browser (only missing IE8 and IE9)
- Mailchimp different background colors for repeatable
- NSCollection view background color filling entirely
- How to set color for position '0' of ExpandableListview
- Webkit browers don't inherit transitioned background color while it's changing on hover
- Multi row alignment and paragraph background
- JTable : how to align data in the center or how to set row background color alternate
Related Questions in BACKGROUND-ATTACHMENT
- Scaling background images without background-attachment: fixed?
- CSS background-attachment and size
- Background-Attachment: Fixed Doesn't Work On iOS
- CSS fixed background-attachment blinks in google chrome
- Is there a way to make a background image that's exclusively to Safari?
- How do I make local attached repeating linear gradients
- Jumbotron Fixed Image Jumps
- CSS background-image Not Fixed
- Simulate the same effect as background-attachment fix for SVG text fill property
- What does background-attachment exactly do?
- background-attachment: Fixed, moves position between Chrome versions
- CSS background-attachment: fixed; breaks when Chrome tab is dragged to larger monitor
- Does anyone know a hack to "fix" broken `background-attachment: fixed` after a CSS3 transform?
- Alternatives to background-attachment: fixed
- CSS: background-attachment: fixed and border-radius
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 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.