×
Home
Jobs
Tools
Coding Ground
Current Affairs
UPSC Notes
Online Tutors
Whiteboard
Tutorix
Login
Categories
Java
JSP
iOS
HTML
Android
Python
C Programming
C++ Programming
C#
PHP
CSS
Javascript
jQuery
SAP
SAP HANA
Data Structure
RDBMS
MySQL
Mathematics
8085 Microprocessor
Operating System
Digital Electronics
Analysis of Algorithms
Mobile Development
Front End
Web Development
Selenium
MongoDB
Computer Network
General Topics
Q/A
Library
eBooks
Courses
Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Selected Reading
UPSC IAS Exams Notes
Developer's Best Practices
Questions and Answers
Effective Resume Writing
HR Interview Questions
Computer Glossary
Who is Who
Sreemaha
has Published
88
Answers
How to get last 2 characters from string in C# using Regex?
C++
Server Side Programming
Programming
Sreemaha
Published on 31-Aug-2018 08:55:52
Set the string −string str = "Cookie and Session";Use the following Regex to get the last 2 characters from string −Regex.Match(str, @"(.{2})\s*$")The following is the code −Example Live Demousing System; using System.Text.RegularExpressions; public class Demo { public static void Main() { string str = "Cookie and Session"; ...
Read More
CSS voice-stress Speech Media property
CSS
Web Development
Front End Technology
Sreemaha
Published on 07-Jun-2018 12:52:04
Add adjustments to the speech with the voice-stress property like change pitch, how much loud it is, etc.The following is the syntax:voice-stress: normal | strong | moderate | none | reducedThe following example is to implement the voice-stress speech media property:p { voice-stress: strong; }Above, I have set strong ...
Read More
Change CSS columns property with Animation
CSS
Web Development
Front End Technology
Sreemaha
Published on 07-Jun-2018 08:45:54
To implement animation on columns property with CSS, you can try to run the following code:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 600px; height: 300px; ...
Read More
Set the name to Grid Items with CSS
CSS
Web Development
Front End Technology
Sreemaha
Published on 07-Jun-2018 08:15:48
To set names to grid items in CSS, use the grid-area property, with the grid-template-areas property:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> .container { display: grid; background-color: green; ...
Read More
CSS animation-play-state property
CSS
Web Development
Front End Technology
Sreemaha
Published on 16-May-2018 13:58:31
Use the animation-play-state property to set whether the animation is running or paused.You can try to run the following code to implement the animation-play-state property:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> div { width: 150px; ...
Read More
How to specify the bottom position of 3D elements with CSS
CSS
Web Development
Front End Technology
Sreemaha
Published on 16-May-2018 11:26:39
To specify the bottom position of 3D elements, use the perspective-origin property.You can try to run the following code to implement the perspective-origin property:ExampleLive Demo <!DOCTYPE html> <html> <head> <style> .demo1 { position: relative; ...
Read More
What are Inline List Items in CSS
CSS
Web Development
Front End Technology
Sreemaha
Published on 09-May-2018 10:36:28
Use Inline List Items to build a horizontal navigation bar. Set the &lt;li&gt; elements as inline.ExampleYou can try to run the following code to create horizontal navigation bar:Live Demo<!DOCTYPE html> <html> <head> <style> ul { list-style-type: ...
Read More
Role of CSS :required Selector
CSS
Web Development
Front End Technology
Sreemaha
Published on 09-May-2018 07:59:40
Use the CSS :required selector to style &lt;input&gt; elements with a "required" attribute. You can try to run the following code to implement the :required selector:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> input:required { background-color: orange; ...
Read More
Style every <p> element with a lang attribute value with CSS
CSS
Web Development
Front End Technology
Sreemaha
Published on 08-May-2018 14:08:32
Use the CSS :lang selector to style every <p> element with a lang attribute value. You can try to run the following code to implement the :lang selector:ExampleLive Demo<!DOCTYPE html> <html> <head> <style> p:lang(fr) { background: green; ...
Read More
CSS overflow: scroll
CSS
Web Development
Front End Technology
Sreemaha
Published on 08-May-2018 11:36:55
In the CSS overflow property with value scroll, the overflow is clipped and a scrollbar gets added. This allows the user to read the entire content.ExampleYou can try to run the following code to implement CSS overflow: scroll property −Live Demo<!DOCTYPE html> <html> <head> <style> ...
Read More
1
2
3
4
5
6
7
...
9
Next
Advertisements
Print
Add Notes
Bookmark this page
Report Error
Suggestions
Save
Close
Dashboard
Logout