Karthikeya Boyini has Published 2681 Articles

E.F. Codd’s 12 Rules for RDBMS

karthikeya Boyini

karthikeya Boyini

Updated on 14-Jul-2020 08:47:00

Database Management System or DBMS essentially consists of a comprehensive set of application programs that can be leveraged to access, manage and update the data, provided the data is interrelated and profoundly persistent. Just like any management system, the goal of a DBMS is to provide an efficient and convenient ... Read More

The 5 Best Price Tracking Tools

karthikeya Boyini

karthikeya Boyini

Updated on 14-Jul-2020 07:38:34

The E-commerce sector in our nation is booming like never before. Presently, it is occupying the third position with regards to internet users, having 10 million people who shop online. Definitely, there exists a huge potential, which is untapped to make use of.In India, Flipkart concluded its biggest online sale ... Read More

Windows in safe mode troubleshoots all system issues

karthikeya Boyini

karthikeya Boyini

Updated on 14-Jul-2020 07:22:43

Now, because of heavy or 24 hours uses of computer at corporate or home place, it becomes a complex and delicate machine. This complex and delicate machine sometime goes wrong while updating BIOS, downloading new drivers, or just surfing the Web. To resolve these issues user does not have to ... Read More

Share Powerpoint Presentation through Facebook

karthikeya Boyini

karthikeya Boyini

Updated on 14-Jul-2020 05:58:47

Using Microsoft’s PowerPoint software, people create new presentation for marketing, office, or college purpose, there are number of ways to share those presentations with others. Although, people can use these presentation as a slideshow for next business meeting, and collage guy or office people can use it to present their ... Read More

Define colors using the Hue-Saturation-Lightness-Alpha model (HSLA) with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 06-Jul-2020 08:23:59

To define colors using the Hue-Saturation-Lightness model (HSL) with Opacity, use the hsla() CSS method.ExampleYou can try to run the following code to implement the hsla() function in CSSLive Demo                    h1 {             background-color:hsl(0,100%,50%);          }          h2 {             background-color:hsl(192,89%,48%);          }          p {             background-color:hsla(290,100%,50%,0.3);          }                     Red Background       Blue Background       This is demo text!    

Align the flex items in the bottom of the container in CSS

karthikeya Boyini

karthikeya Boyini

Updated on 06-Jul-2020 08:20:51

Use the align-items property with value flex-end to align flex items on the bottom.ExampleYou can try to run the following code to implement the flex-end valueLive Demo                    .mycontainer {             display: flex;       ... Read More

Set the flex items vertically from bottom to top with CSS

karthikeya Boyini

karthikeya Boyini

Updated on 04-Jul-2020 08:01:29

Use the flex-direction property with column-reverse value to set the flex-items vertically, from top to bottomExampleYou can try to run the following code to implement the column-reverse value −Live Demo                    .mycontainer {             display: ... Read More

Usage of var() CSS function

karthikeya Boyini

karthikeya Boyini

Updated on 04-Jul-2020 07:03:47

The var() function in CSS is used to add custom property values to your web page. Set a custom name of the property and set value for it.ExampleYou can try to run the following code to implement var() functionLive Demo                 ... Read More

HTML DOM Select size Property

karthikeya Boyini

karthikeya Boyini

Updated on 01-Jul-2020 09:22:05

The HTML DOM select size property returns and modify the value of the size attribute of a drop-down list.SyntaxFollowing is the syntax −Returning sizeobject.sizeModifying valueobject.size = “number”ExampleLet us see an example of HTML DOM select size property − Live Demo    html{       height:100%;    } ... Read More

HTML DOM Input Number required Property

karthikeya Boyini

karthikeya Boyini

Updated on 01-Jul-2020 09:19:27

The HTML DOM input number required property returns and modify whether the input number field must be filled out before submitting the form.SyntaxFollowing is the syntax −Returning requiredobject.requiredModifying requiredobject.required = true | falseExampleLet us see an example of HTML DOM input number required property − Live Demo   ... Read More

Advertisements