Media Queries with CSS3

Ankitha Reddy
Updated on 30-Jul-2019 22:30:22

295 Views

Media queries are for different style rules for different size devices such as mobiles, desktops, etc. You can try to run the following code to implement media queries with CSS3 − Example Live Demo body { background-color: lightpink; } @media screen and (max-width: 420px) { body { background-color: lightblue; } } If screen size is less than 420px, then it will show lightblue color, or else it will show light pink color

Different Tiles in SAP HANA Cockpit Offline Administration

SAP Developer
Updated on 30-Jul-2019 22:30:22

179 Views

When you open SAP HANA Cockpit for offline administration, following tiles are available:

Data Provisioning Option in SAP HANA Studio

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:22

453 Views

Data provisioning is available under SAP HANA Modeler Perspective.

Play Infinitely Looping Video on Load in HTML5

Arjun Thakur
Updated on 30-Jul-2019 22:30:22

5K+ Views

The tag specifies video. Currently, there are 3 supported video formats for the element that are MP4, WebM, and Ogg. Autoplay is used to start the video when the video and page loads.The loop attribute is a boolean attribute. When present, it specifies that the video will start over again, every time it is finished.The loop attribute should do it. Your browser does not support the video element. If you have a problem with the loop attribute, listen to the videoEnd event. After that call the play() method when it fires.

Enable XS Engine Service in SAP HANA Studio

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:22

1K+ Views

To Configure DXC, you need to enable XS Engine (SAP HANA Extended Application Services). To enable XS Engine Change the Instance value to “1”. XS Engine Service in SAP HANA Studio is used to handle Control Flow Logic.

Check XS Engine Service in SAP HANA System

Anil SAP Gupta
Updated on 30-Jul-2019 22:30:22

1K+ Views

You can try accessing XS Engine using below address in IE.http://:80 and you will get below screen to show that XS Engine is working fine.

CSS Relative Units

mkotla
Updated on 30-Jul-2019 22:30:22

180 Views

In relative units, the length value is fixed and it appears the exact size of the element. Let us see the units:UnitsAbbreviationPercent%EmEmExExRoot emRemViewport widthVwViewport widthVhViewport widthVmCharacterChGridGd

Specify Stop Wait Timeout Date and Time in SAP HANA

SAP Developer
Updated on 30-Jul-2019 22:30:22

369 Views

You can also stop HANA system by setting date and time and this comes under Soft stop.In case you don’t shut down the system before the specified timeout, it is shut down forcefully.

What is CSS and Why It Is Used

varun
Updated on 30-Jul-2019 22:30:22

361 Views

CSS handles the look and feel part of a web page. Using CSS, you can control the color of the text, the style of fonts, the spacing between paragraphs, how columns are sized and laid out, what background images or colors are used, layout designs, variations in the display for different devices and screen sizes as well as a variety of other effects.Cascading Style Sheets, fondly referred to as CSS, is a simple design language intended to simplify the process of making web pages presentable.CSS is easy to learn and understand but it provides powerful control over the presentation of ... Read More

Difference Between Stop and Kill a Service in SAP HANA

SAP Developer
Updated on 30-Jul-2019 22:30:22

252 Views

Stop...The service is stopped normally and then typically restarted.Kill...The service is stopped immediately and then typically restarted.

Advertisements