Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Other Programming › Web Languages › CSS help

CSS help

Posts 1–3 of 3 · Page 1 of 1
DA
dawid17
CSS help


Im trying to make sales cards but for some reason the button goes out of it. I want to get the effect which is shown below;




my code
HTML
Code:
  <div class="package2">
<p>ADVANCED PACKAGE</p>
<div class="orange">
<h2 class='dollar'>$30</h2></div>
<p>Nullam suscipit vitae</p>
<p>Etiam faucibus</p>
<p>Vivamus viverra</p>
<a href="#" class="buttons5">PURCHASE</a>
</div>
</div>
CSS
Code:
.package2 {
  background-color: #f9f9f9;
  border: 1px solid #d7d7cf;
  width: 100%;
    height: 100%;
    margin-left: 20px;

    
 
}

.orange {
  background-color: #fd7c00;


}

.buttons5 {
  background-color: #fd7c00;
  text-decoration: none;
  color: #fff;
    padding: 5% 20%;
    
}
#1 · 7y ago
MI
MikeRohsoft
Code:
<!doctype HTML>
<html>
<head>
<style>
.package {
	color: red;
	width: 400px;
	font-size: 20px;
}

.package > h1 {
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
	color: grey;
}

.package > p {
	margin-top: 1px;
	margin-bottom: 1px;
	text-align: center;
	color:blue;
	color: grey;
}

.package > h2 {
	margin-top: 1px;
	margin-bottom: 1px;
	padding-left: 10px;
	text-align: center;
	color: white;
	font-size: 60px;
	background-color: green;
}

.package > div {
	padding-top: 10px;
	text-align: center;
	display: flex;
	justify-content: center;
}

.package > div > a {
	text-align: center;
	text-decoration: none;
	background-color:green;
	color: white;
	padding: 15px;
}
</style>
</head>
<body>
<div class="package">
	<h1>BASIC PACKAGE</h1>
	<h2>20$</h2>
	<p>Nullam suscipit vitae</p>
	<p>Etiam faucibus</p>
	<p>Vivamus viverra</p>
	<div>
		<a href="#">PURCHASE</a>
	</div>
</div>
</body>
</html>
#2 · 7y ago
DA
dawid17
Thank you!
#3 · 7y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • PAST0HOOK CSS (HELP !)By WolfCristal in CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    4Last post 9y ago
  • HTML + CSS helpBy minyaza in Other Programming
    1Last post 10y ago
  • Looking for Wall Hack that works with sv_pure 0 1 or 2 servers for CSS Help plz!By beastmode88 in CounterStrike Online Hacks
    4Last post 13y ago
  • I NEED CSS... PLZ HELPBy XxbluhhxX in CounterStrike (CS) 1.6 Hacks / Counter Strike: Source (CSS) Hacks
    2Last post 17y ago
  • Help with css hackBy storm151515 in Suggestions, Requests & General Help
    2Last post 17y ago

Tags for this Thread

None